feat: 调整项目目录结构

This commit is contained in:
DEV_DSW
2025-09-24 17:15:02 +08:00
parent d9b59db465
commit bf83e95b7b
66 changed files with 3941 additions and 3855 deletions

View File

@@ -1,23 +0,0 @@
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