【发布时间】:2019-03-25 19:44:58
【问题描述】:
所以我们有一条可以正常工作的线
<v-text :config="{text: 'sampleText'}" />
但是如何让 v-text 元素使用 vue 变量/props?
<v-text :config="{text: {{sampleText}}}" />
vue 不喜欢这样:
Errors compiling template:
invalid expression: Unexpected token { in {text: {{sampleText}}}
什么是正确的方法?
【问题讨论】: