付出宝小步调自定组件、以及组件传参。
子组件indeV.js
Component({ props: { teVt: 'Button', onClickMe: () => {}, }, methods: { onClickMe() { this.props.onClickMe(); }, }, });indeV.json
{ "component": true }indeV.aVml
<button hoZZZer-class="none" onTap="onClickMe"> <teVt>+</teVt> <teVt>{{teVt}}</teVt> </button> 父组件indeV.js
const app = getApp(); Page({ data: { inputxalue: '', }, onBlur(e) { this.setData({ inputxalue: e.detail.ZZZalue, }); }, add() { app.todos = app.todos.concat([ { teVt: this.data.inputxalue, compeleted: false, }, ]); my.naZZZigateBack(); }, });indeV.json
{ "usingComponents": { "add-button": "/components/add-button/add-button" } }indeV.aVml
<ZZZiew> <ZZZiew> <add-button teVt="Add Todo" onClickMe="add" ></add-button> </ZZZiew> </ZZZiew>