是否/良好的做法是在组件内部的计算属性函数内使用prop值?如果是这样,我如何使用此道具建立退货?
Carousel.vue
props: [
'source',
],
computed: {
items () {
return this.$store.state.(prop value source here).list
}
}
store / categorya.js(categoryb和categoryc相同)
import categorya from '(...)'
export const state = () => ({
list: categorya
})
更新
Index.vue
carousel(source="categorya")
carousel(source="categoryb")
carousel(source="categoryc")