gpt4 book ai didi

Vue.js 3 - "export ' createStore' 未在 'vuex' 中找到

转载 作者:行者123 更新时间:2023-12-03 16:43:46 26 4
gpt4 key购买 nike

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

WARNING Compiled with 1 warnings 11:50:40 PMwarning 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');

最佳答案

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

npm install --save vuex@next
对于使用 Yarn 的人,下面是命令
yarn add vuex@next

关于Vue.js 3 - "export ' createStore' 未在 'vuex' 中找到,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65150323/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com