19 lines
253 B
JavaScript
19 lines
253 B
JavaScript
|
Component({
|
||
|
options: {
|
||
|
multipleSlots: true,
|
||
|
addGlobalClass: true
|
||
|
},
|
||
|
relations: {
|
||
|
'../scroller/index': {
|
||
|
type: 'parent',
|
||
|
linked() {}
|
||
|
}
|
||
|
},
|
||
|
properties: {
|
||
|
pageList: {
|
||
|
type: Array,
|
||
|
value: []
|
||
|
}
|
||
|
}
|
||
|
})
|