Skip to content

Commit

Permalink
feat: remove useless code
Browse files Browse the repository at this point in the history
  • Loading branch information
09473ZH committed Mar 19, 2024
1 parent 3e0fe64 commit 914df9f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions demo/App.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts" setup>
import { version } from 'vue-demi'
import { computed, reactive, ref, watch } from 'vue'
import { reactive, ref, watch } from 'vue'
import { useI18n } from 'vue-i18n'
import { newShortText } from './text/new-short-text'
import { oldShortText } from './text/old-short-text'
Expand Down Expand Up @@ -58,8 +58,6 @@ const { locale, t } = useI18n()
function toggleLang() {
locale.value = locale.value === 'en' ? 'cn' : 'en'
}
const label = computed(() => t('options.theme'))
</script>

<template>
Expand Down

0 comments on commit 914df9f

Please sign in to comment.