chore: split app to commons and web (squash commit)

This commit is contained in:
Andrew Bastin
2022-12-02 02:57:46 -05:00
parent fb827e3586
commit 3d004f2322
535 changed files with 1487 additions and 501 deletions

View File

@@ -0,0 +1,31 @@
<template>
<GithubButton
title="Star Hoppscotch on GitHub"
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"
:data-size="size"
/>
</template>
<script setup lang="ts">
import GithubButton from "vue-github-button"
import { useColorMode } from "@composables/theming"
const colorMode = useColorMode()
defineProps({
size: {
type: String,
default: undefined,
},
})
</script>