20

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');
A1rPun
  • 16,287
  • 7
  • 57
  • 90
DeV1
  • 247
  • 1
  • 3
  • 9

2 Answers2

51

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
Balasubramanian S
  • 1,345
  • 12
  • 16
Boussadjra Brahim
  • 82,684
  • 19
  • 144
  • 164
0
$ yarn remove vuex
$ yarn add vuex@next

This has fixed my issue!

Sopan
  • 644
  • 7
  • 13