你好,SO朋友们,
我在我的一个 Vue 组件中引用 Vuex 存储模块时遇到问题。如果我将代码从 authentication.module.ts 移动到 store.ts,我可以让 State 和 Mutations 正常工作,但是在尝试使用模块来获得更清晰的代码时,我似乎无法引用该模块. 我得到一个错误:
[vuex] 在 mapState() 中找不到模块命名空间:@/_Store/_Modules/authentication.module/
我已将 namespaced:true 添加到模块中,所以我很困惑我还缺少什么?
Store.ts
import Vue from "vue";
import Vuex from "vuex";
import Authentication from "@/_Store/_Modules/authentication.module"
Vue.use(Vuex);
export default new Vuex.Store({
modules:{
Authentication
}
});
authentication.module.ts
更新:添加命名空间:'Authentication' - 问题仍然存在
export default {
namespaced:true,
namespace:'Authentication'
state: {
counter: 0
},
mutations:{
incrementCounter(state: { counter: number; }) {
state.counter++ }
}
}
Home.Vue(加载时出现错误,因为假设要渲染 State 属性)
<h1>Hello and Welcome Home!</h1>
<div>The Count of the store is: {{counter}}</div>
<button type="button" v-on:click='increment'>Click to Increment</button>
<script lang="ts">
import { Vue, Component } from "vue-property-decorator";
import { State, Getter, Action, Mutation, namespace } from "vuex-class";
const Authentication = namespace("@/_Store/_Modules/authentication.module"); // This is the problem line here it seems?
@Component
export default class Home extends Vue {
@Authentication.State("counter") counter!: number;
@Authentication.Mutation("incrementCounter") increment!: void;
}
</script>
Main.ts
*更新:添加了 Main.ts 文件以供参考
import Vue from "vue";
import App from "./App.vue";
import router from "./router";
import store from "./_Store/store";
import '../node_modules/bootstrap/dist/css/bootstrap.min.css'
Vue.config.productionTip = false;
new Vue({
router,
store,
render: h => h(App),
}).$mount("#app");