微信小程序自定义组件及传值,自定模块
今天试着在做小程序项目开发,遇到一些公用的模块就顺便使用了自定义的模板和自定义组件,渲染模板数组的时候遇到了一些问题 ,然后总结一下:
首先先说一下自定义模板:
// template.wxml
<template name="primary">
<button class='btn-class' type='primary'>{
{
button.con}}</button>
</template>
<template name="warn">
<button class='btn-class' type='warn'>{
{
button.con}}</button>
</template>
单个模板文件,可以定义多个template,只需用name区分即可
// index.wxml
<import src="../../component/template/button.wxml"/>
<block wx: