vue-konva使v-text使用vars / props

时间:2019-03-25 11:06:41

标签: vue.js konvajs

所以我们有一条行很好

<v-text :config="{text: 'sampleText'}" />

但是如何使v-text元素使用vue变量/属性?

<v-text :config="{text: {{sampleText}}}" />

vue不喜欢这样:

Errors compiling template:    
  invalid expression: Unexpected token { in {text: {{sampleText}}}

正确的方法是什么?

1 个答案:

答案 0 :(得分:2)

您只需要使用:

<v-text :config="{text: sampleText}" /> 

其中sampleText是一个vue变量