这是vuex官网给出的示例,很容易理解const Counter = {
template: `<div>{{ count }}</div>`, computed: {
count () {
return store.state.count
}
}
}我现在想在html的属性里使用count,如const Counter = {
template: `<img src="{{img}}">`, computed: {
count () {
return store.state.img
}
}
}但是这么写是不行的,请问如过要实现这种效果该怎么实现呢?
添加回答
举报
0/150
提交
取消