12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- Component({
- externalClasses: ['i-class'],
- properties : {
- status : {
- type : String,
-
- value : ''
- },
- title : {
- type : String,
- value : ''
- },
- content : {
- type : String,
- value : ''
- },
- icon : {
- type : String,
- value : ''
- }
- },
- options: {
-
- multipleSlots: true
- },
- relations : {
- '../steps/index' : {
- type : 'parent'
- }
- },
- data : {
-
- len : 1,
-
- index : 0,
-
- current : 0,
-
- direction : 'horizontal'
- },
- methods : {
- updateDataChange( options ){
- this.setData({
- len : options.len,
- index : options.index,
- current : options.current,
- direction : options.direction
- })
- }
- }
- })
|