例如,我收到带有{{hello}} world!
且值为hello = Hola
的消息,我该如何做?我了解我们可以使用<tag>{{hello}}</tag>
来获取标签值,但是如果我想使用模板消息怎么办?
我真正想要的是类似的东西
<tag
:message=`{{hello}} world!`
:hello="hola"
/>
答案 0 :(得分:1)
我尝试这种方法。
<tag
:message="`${hello} world!`"
:hello="hello"
/>
data(){
return{
hello:'hora'
}
}