没有写需要导入 template 的相关文件
https://developers.weixin.qq.com/miniprogram/dev/reference/wxml/template.html
要在使用 template 的 wxml 文件里 import 相关的 wxml 文件
例如
<import src="/wxTemplate/wxTemplate.wxml" />
同时 import 相关的wxss 文件
例如
@import “/wxTemplate/wxTemplate.wxss”;
2 回复