我有以下动态变量
{{region}}
可以等于北,南,东或西。
我想用它来从我的数据对象中提取变量
我试过
{{#region.copy}}
这可能在vue
data: function() {
return {
north : {
copy: "this is the north copy"
},
south : {
copy: "this is the north copy"
}
}
答案 0 :(得分:1)
您可以将北,南,东和西放在对象地理位置。在地理位置,您可以geo[region].copy
访问您所在的地区。如果region === south
,则会生成geo.south.copy
编辑:在计算变量中,您还可以使用this[region].copy
而不是地理环绕