mirror of
https://gitee.com/hhyykk/ipms-sjy-ui.git
synced 2025-02-03 12:14:58 +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 }
|