我是 vue.js 提供的 Vuex 商店的新手。我想在下面的场景中使用它。
1.状态是指服务器提供的任何静态或动态数据。或者说存储在json中的数据?
模板。
<!-- title start -->
<div class="_Handler-0-1">
<x-x :path="store.glyph.path['0']":classs="store.static.class['0']"/>
</div>
<!-- title end -->
目的
store: {
glyph: {
path: {
0: '<svg>.....</svg'>
}
},
static: {
class: {
0: 'icon-phone'
}
}
}