FlowPacs/yudao-ui-admin-vue3/src/store/index.ts
2022-10-08 18:51:50 +08:00

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 }