37 lines
564 B
JavaScript
37 lines
564 B
JavaScript
// components/tab/tab.js
|
|
Component({
|
|
/**
|
|
* 组件的属性列表
|
|
*/
|
|
options:{
|
|
styleIsolation:"isolated"
|
|
},
|
|
properties: {
|
|
data:{
|
|
type:Array,
|
|
},
|
|
current:{
|
|
type:[Number,String]
|
|
}
|
|
},
|
|
|
|
/**
|
|
* 组件的初始数据
|
|
*/
|
|
data: {
|
|
|
|
},
|
|
|
|
/**
|
|
* 组件的方法列表
|
|
*/
|
|
methods: {
|
|
updateCurrent(e){
|
|
this.triggerEvent('updatedata',{current:e.currentTarget.dataset.current})
|
|
}
|
|
},
|
|
lifetimes:{
|
|
|
|
},
|
|
})
|