mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-30 10:54:06 +08:00
11 lines
185 B
TypeScript
11 lines
185 B
TypeScript
![]() |
import type { App } from 'vue'
|
||
|
import { createPinia } from 'pinia'
|
||
|
|
||
|
const store = createPinia()
|
||
|
|
||
|
export const setupStore = (app: App<Element>) => {
|
||
|
app.use(store)
|
||
|
}
|
||
|
|
||
|
export { store }
|