vue模板中如何赋值字符串和字符串?

How to assign a string and a string in the vue template?

如何在vue模板中给字符串和字符串赋值?

<q-table
:title=`Lista de ${this.$route.params.tipo}`
/>

error Parsing error: Line 1: Unterminated template

您没有在模板中使用 this。实际上,模板中的所有内容都会自动获得 this

:title=`Lista de ${$route.params.tipo}`

或简单形式,不带模板字符串:

:title='$route.params.tipo'

成功了

:title=' ` Lista de ${$route.params.tipo} ` '

您忘记在模板插值周围添加引号。

:title="`Lista de ${$route.params.tipo}`"