Files
hoppscotch/components/app/GitHubStarButton.vue
2021-06-30 17:23:48 +00:00

29 lines
578 B
Vue

<template>
<TranslateFade appear>
<GithubButton
title="Star Hoppscotch"
href="https://github.com/hoppscotch/hoppscotch"
:data-color-scheme="
$colorMode.value != 'light'
? $colorMode.value == 'black'
? 'dark'
: 'dark_dimmed'
: 'light'
"
:data-show-count="true"
data-text="Star"
aria-label="Star Hoppscotch on GitHub"
/>
</TranslateFade>
</template>
<script>
import GithubButton from "vue-github-button"
export default {
components: {
GithubButton,
},
}
</script>