19 lines
287 B
Vue
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>
|