4 回复
重现方法:在一个template中如果包含一个自定义组件,当通过import把这个模板引入到一个page中使用时就会报这个错误,如果模板直接在page中定义就没问题。
/text/text.wxml
<
import
src
=
"/test/my-template.wxml"
/>
<
template
is
=
"my-template"
/>
/test/my-template.wxml
<
template
name
=
"my-template"
>
<
my-component
/>
</
template
>
/test/my-component.wxml
<
view
>我是一个牛X的组件</
view
>
(PS组件其他代码都没有,就是基本的声明)