所以我们有一条行很好
<v-text :config="{text: 'sampleText'}" />
但是如何使v-text元素使用vue变量/属性?
<v-text :config="{text: {{sampleText}}}" />
vue不喜欢这样:
Errors compiling template:
invalid expression: Unexpected token { in {text: {{sampleText}}}
正确的方法是什么?
答案 0 :(得分:2)
您只需要使用:
<v-text :config="{text: sampleText}" />
其中sampleText
是一个vue变量