9 lines
160 B
TypeScript
9 lines
160 B
TypeScript
import { createPinia } from 'pinia'
|
|
import type { App } from 'vue'
|
|
|
|
export const store = createPinia()
|
|
|
|
export default function (app: App) {
|
|
app.use(store)
|
|
}
|