0
0
Fork 0
salix-front-mindshore-fork2/src/boot/pinia.js

9 lines
171 B
JavaScript

import { boot } from 'quasar/wrappers';
import { createPinia } from 'pinia';
export default boot(({ app }) => {
const pinia = createPinia();
app.use(pinia);
});