mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
10 lines
232 B
TypeScript
10 lines
232 B
TypeScript
import type { App } from 'vue'
|
|
|
|
export { useSetting } from './modules/setting' // import { useSetting } from '@/store' 即可使用
|
|
|
|
const store = createPinia()
|
|
|
|
export const setupStore = (app: App<Element>) => {
|
|
app.use(store)
|
|
}
|