我使用vuejs2并希望将一些组件附加到我的主组件上。现在我可以这样:
var Component ={
template: '<div>1</div>'
};
但是,我希望模板中的东西是来自其他目录的部分html,比如模板:&#39; ../../ com / a.html&#39;,我听说x-template但不是知道如何使用它。另外,除了webpack / browserify / npm系列之外,还有一些lib可以直接使用,只需在html的末尾添加脚本吗?
答案 0 :(得分:0)
您的模板文件为
/* yourPath/name.template.html */
<div class="myClass">
1
</div>
然后在组件文件中,您可以执行以下操作:
export default {
template: require('yourRelativePath/name.template.html'),
data: function () {
return {
};
}
}