Skip to content

Commit 914df9f

Browse files
committed
feat: remove useless code
1 parent 3e0fe64 commit 914df9f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

demo/App.vue

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script lang="ts" setup>
22
import { version } from 'vue-demi'
3-
import { computed, reactive, ref, watch } from 'vue'
3+
import { reactive, ref, watch } from 'vue'
44
import { useI18n } from 'vue-i18n'
55
import { newShortText } from './text/new-short-text'
66
import { oldShortText } from './text/old-short-text'
@@ -58,8 +58,6 @@ const { locale, t } = useI18n()
5858
function toggleLang() {
5959
locale.value = locale.value === 'en' ? 'cn' : 'en'
6060
}
61-
62-
const label = computed(() => t('options.theme'))
6361
</script>
6462

6563
<template>

0 commit comments

Comments
 (0)