How to use pinia in Quasar framework? #9209
Unanswered
donPuerto
asked this question in
General - Components / Directives / etc
Replies: 1 comment
-
This could work: import { boot } from 'quasar/wrappers';
import { createPinia } from 'pinia'
const pinia = createPinia()
console.log('Pinia was created', pinia)
export default boot(({app}) => {
app.use(pinia)
});
export { pinia } |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Im having error in boot, cannot find "pinia"
Beta Was this translation helpful? Give feedback.
All reactions