Files
ss-crm-manage-web/src/store/index.ts

11 lines
185 B
TypeScript
Raw Normal View History

2024-04-28 16:20:45 +08:00
import type { App } from 'vue'
import { createPinia } from 'pinia'
const store = createPinia()
export const setupStore = (app: App<Element>) => {
app.use(store)
}
export { store }