[Vuejs]-Getting undefined store in quasar

0👍

did you define the store in

store/index.js

you have to

import myStoreName from './myStoreFolderName'

and then in the module section add your store

modules: {
  myStoreName,

Leave a comment