Spaces:
Running
Running
File size: 283 Bytes
d669ddb |
1 2 3 4 5 6 7 8 9 10 11 |
import type { App } from 'vue';
import { createPinia } from 'pinia';
import piniaPluginPersistedstate from 'pinia-plugin-persistedstate';
export const store = createPinia();
store.use(piniaPluginPersistedstate);
export function setupStore(app: App) {
app.use(store);
}
|