[Vuejs]-Nativescript-Vue: 'tns preview' error with loading Vuex?

0👍

I’ve managed to solve this problem by adding in main.js this line, right after importing store:

import store from './store'
Vue.prototype.$store = store

Leave a comment