We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e0fe64 commit 914df9fCopy full SHA for 914df9f
demo/App.vue
@@ -1,6 +1,6 @@
1
<script lang="ts" setup>
2
import { version } from 'vue-demi'
3
-import { computed, reactive, ref, watch } from 'vue'
+import { reactive, ref, watch } from 'vue'
4
import { useI18n } from 'vue-i18n'
5
import { newShortText } from './text/new-short-text'
6
import { oldShortText } from './text/old-short-text'
@@ -58,8 +58,6 @@ const { locale, t } = useI18n()
58
function toggleLang() {
59
locale.value = locale.value === 'en' ? 'cn' : 'en'
60
}
61
-
62
-const label = computed(() => t('options.theme'))
63
</script>
64
65
<template>
0 commit comments