Files
zn-ai/src/renderer/App.vue
2025-11-22 21:17:40 +08:00

19 lines
287 B
Vue

<template>
<div id="app">
<router-view />
</div>
</template>
<script setup lang="ts">
import { useCounterStore } from "@store/counter";
// 使用 Pinia store
const counterStore = useCounterStore();
</script>
<style scoped>
#app {
@apply min-h-screen bg-gray-100;
}
</style>