参数声明
Component({
// 参数
properties: {
// 这里定义了innerText属性,属性值可以在组件使用时指定
innerText: {
type: String,
value: 'default value',
}
},
// 生命周期
lifetimes: {
attached: function() {
// 在组件实例进入页面节点树时执行
},
detached: function() {
// 在组件实例被从页面节点树移除时执行
},
},
})
传递参数
// 文本
<xq-items innerText="IT_IOS_MAN"/>
// 参数
<xq-items innerText="{{name}}"/>
网友评论