Vue.js 3 - “在 'vuex' 中找不到导出 'createStore'

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

我在 运行 我的应用程序时出现此错误:

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

我通过npm install --save vuex

安装了vuex

我正在使用 vue 3

我的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;

我的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');

您已经通过 运行 安装了 Vuex 版本 3.x npm install --save vuex 您应该卸载它 npm uninstall --save vuex 然后安装与 vue 3 兼容的版本 4 运行 以下命令:

npm install --save vuex@next

对于使用 Yarn 的人,下面是命令

yarn add vuex@next
$ yarn remove vuex
$ yarn add vuex@next

这解决了我的问题!