我尝试在模块中分离我的 Vuex 代码,但我无法从mapState()
.
创建模块和使用映射的最佳方式是什么?
我有一个商店文件夹:
├── store
│ └── index.js
| └── testStore.js
|
在index.js
我有:
import Vue from "vue";
import Vuex from "vuex";
import { testStore } from './testStore'
Vue.use(Vuex);
export default new Vuex.Store({
modules : {
testStore,
}
});
在testStore.js
我有:
export const testStore =
{
namespaced: true,
state,
mutations,
}
const state =
{
social: false,
normal: true,
};
const mutations =
{
// setters
setSocial(state, payload) {
state.social = payload;
},
setNormal(state, payload) {
state.normal = payload;
},
};
我有一个测试组件可以尝试:(我使用 Vuetify)
testComponent.vue
:
<template>
<v-container>
<v-layout justify-center>
<v-btn class="primary" @click="displaydata">test</v-btn>
</v-layout>
</v-container>
</template>
<script>
import { mapState, mapMutations } from 'vuex'
export default {
computed: {
...mapState('testStore',['normal','social']),
},
methods: {
...mapMutations('testStore',['setNormal','setSocial']),
displaydata() {
// eslint-disable-next-line
console.log(this.normal);
// eslint-disable-next-line
console.log(this.social);
}
}
};
</script>
当我单击“测试”按钮时,控制台显示:undefined
.
那么,有什么问题呢?:(