我有几个组件的应用程序。我使用Vuex存储数据,因此我可以在不同的组件中使用它。现在我需要使用v-for渲染一些div。我这样做:
VueX /模块/ shows.js
const state = {
shows: [
{
name: 'Hard Luck',
venue: 'The Venue',
time: '6:00 pm'
},
{
name: 'Hard Luck',
venue: 'The Venue',
time: '6:00 pm'
}
]
}
export default {
state
}
我需要使用数据的组件:
<template>
<div class="dashboard__details dashboard__details--shows"
v-for="show in shows">
<h3 class="dashboard__name">
{{show.name}} @ {{show.venue}}
</h3>
<span class="dashboard__time">{{show.time}}</span>
<div class="dashboard__btnBlock">
<button">Details</button>
</div>
</div>
</template>
<script>
import { mapState } from 'vuex'
import ReportIssue from './ReportIssue'
import InviteFriend from './InviteFriend'
export default {
name: 'dashboard',
components: { ReportIssue, InviteFriend },
computed: mapState({
shows: state => {
return state.shows
}
})
}
</script>
如果我在组件的数据中有数据,但是如果我将数据存储在Vuex中,则无法使其工作。
答案 0 :(得分:5)
如果您使用的是模块,则需要在商店内进行配置:
# your Vuex store
import shows from './VueX/Modules/shows.js'
export default new Vuex.Store({
modules: {
shows,
},
...
然后,当您在组件中引用它时,您调用模块而不是根状态:
export default {
name: 'dashboard',
components: { ReportIssue, InviteFriend },
computed: mapState({
shows: ({ shows }) => shows.shows
})
}
您可能希望重命名模块以避免shows.shows
,但您应该明白