如何将xml模板放入vue组件属性中

时间:2019-06-06 18:50:16

标签: vue.js nativescript

我正在NativeScript及其文档中使用自定义视图插件:https://market.nativescript.org/plugins/nativescript-filter-select

有一个选项可以添加带有xml的项目模板。

在我看来,我应该这样通过:

<FilterSelect
    item_template=" xml template here "
/>

我已经尝试过了:

<FilterSelect
    item_template="<Label col='0' text='{{ ${this._search_param} }}' 
    textWrap='true' />"

但是不起作用。 (不渲染)

有人可以帮助我吗?

1 个答案:

答案 0 :(得分:1)

为了使此语法起作用,您将需要使用es6模板文字。因此,以您的示例为例:

MyPath=thisworkbook.path

这应该允许您使用<FilterSelect :item_template="` <Label col='0' text='{{ ${this._search_param} }}' textWrap='true' /> `" /> 字符串插值。另外,不要忘记关闭标签。