改进 显示

This commit is contained in:
ivamp 2023-12-05 20:58:28 +08:00
parent b1ac2da3ec
commit 22dc204fdf

View File

@ -13,13 +13,16 @@
<v-app-bar>
<v-app-bar-nav-icon @click="drawer = !drawer"></v-app-bar-nav-icon>
<v-app-bar-title>Application</v-app-bar-title>
<v-app-bar-title>{{ configStore.appName }}</v-app-bar-title>
</v-app-bar>
<!-- </v-app> -->
</template>
<script lang="ts" setup>
import { ref } from "vue";
import { useConfigStore } from "@/store/config";
const configStore = useConfigStore()
const drawer = ref(false);
</script>