my-component.json配置
{
“component”:true,
“usingComponents”: {}
}
my-component.wxml页面
add
del
my-component.wxss样式
.list{
text-align: center;
background-color: #ccc;
border-top: 1rpx solid #fff;
}
my-component.js—自定义组件
Component({
data: {
list: [1, 2, 3, 4, 5]
},
methods: {
addItem: function () {
var list = this.data.list
list.push(list.length + 1)
this.setData({
list: list
})
},
delItem: function () { </