出售本站【域名】【外链】

时尚的近义词是啥

文章正文
发布时间:2023-08-07 02:04
付出宝小步调自界说组件

付出宝小步调自定组件、以及组件传参。

子组件

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>