微信小程序父组件向子组件传参,子组件样式无效问题处理
父组件代码
引入
json
"usingComponents": {"evaluate":"../evaluate/evaluate"},
wxml
<evaluate id='1111'></evaluate>
子组件代码
json
{"usingComponents": {"van-rate": "@vant/weapp/rate/index"},"component": true, //必须"options": { "addGlobalClass": true //必须加这个 不然子组件css无效}
}
js
Component({data: {//基本数据},lifetimes: {attached() {//传递参数接受 this.xxxconsole.log(this.id);},},//自带方法pageLifetimes: {show() {console.log(2);},},//接受类似 vue propsproperties: {id: {type: Number,value: 0,},},//自己自定义方法methods: {tabsTo(e) {const statusId = e.currentTarget.dataset.id;this.setData({ statusId });},},
});