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 }
|