-
创建一个新插件
-
在page.json中使用
"usingComponents":{"ele":"path"}
-
在页面中直接使用
<ele></ele>
标签 -
通过设置
list(props)="{{data}}"
父级向插件传值 -
插件使用
properties:{list:{type:String/Object,value:''/{},host:null}}
先进行定义 才能使用父级 传入的值
6.插件修改上一级的值
page 绑定事件
bind:myevent="InfoChange"
infoChange(e){
console.log(e.detail)
}
component
bindgetuserinfo="bindGetUserInfo"
methods:{
bindGetUserInfo(e){
this.triggerEvent('myevent', myEventDetail)
}
}
网友评论