https://developers.weixin.qq.com/miniprogram/dev/reference/wxml/import.html
引入模板不生效,为什么?
<import src="item.wxml"/>
<template is="item" data="{{text: 'forbar'}}"/>
<!-- item.wxml -->
<template name="item">
<text>{{text}}</text>
</template>
3 个回答
截图下你的文件目录
<import src="./item.wxml"/>
我的也是,之前可以,今天突然发现报这个警告了,最后是怎么解决的,什么原因引起的呢
路径错了,哪有你这么写的