Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Vue.js 3 - "export 'createStore' was not found in 'vuex'

i have this error when run my app :

WARNING Compiled with 1 warnings 11:50:40 PM warning in ./src/store/store.js "export 'createStore' was not found in 'vuex'

I installed vuex by npm install --save vuex

I'm using vue 3

my Store.js:

import { createStore } from 'vuex';
import Movie from './Modules/Movie';
import post from './Modules/post';

const store = createStore({
  modules: {
    post,
    Movie,
  },
});

export default store;

my main.js:

import { createApp } from 'vue';
import App from './App.vue';
import router from './router';
import store from './store/store.js';

const app = createApp(App);
app.use(store);
app.use(router);
app.mount('#app');
like image 423
DeV1 Avatar asked Dec 04 '20 20:12

DeV1


Video Answer


1 Answers

You've installed the Vuex version 3.x by running npm install --save vuex you should uninstall it npm uninstall --save vuex then install the version 4 which is compatible with vue 3 by running the following command :

npm install --save vuex@next

For people using Yarn below is the command

yarn add vuex@next
like image 138
Boussadjra Brahim Avatar answered Sep 20 '22 09:09

Boussadjra Brahim