feat: 新增路由|状态管理依赖

This commit is contained in:
duanshuwen
2025-09-22 20:26:48 +08:00
parent 329fc3eb0e
commit 137cb239a8
6 changed files with 71 additions and 8946 deletions

23
src/store/index.js Normal file
View File

@@ -0,0 +1,23 @@
import { createPinia } from 'pinia'
import { defineStore } from 'pinia'
// 创建pinia实例
const pinia = createPinia()
// 定义一个基本的store
export const useMainStore = defineStore('main', {
state: () => ({
count: 0
}),
actions: {
increment() {
this.count++
},
decrement() {
this.count--
}
}
})
export default pinia