mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
23 lines
343 B
JavaScript
23 lines
343 B
JavaScript
'use strict';
|
|
|
|
Component({
|
|
externalClasses: ['steps-class', 'icon-class', 'title-class', 'desc-class'],
|
|
properties: {
|
|
type: {
|
|
type: String,
|
|
value: 'horizon'
|
|
},
|
|
|
|
hasDesc: {
|
|
type: Boolean,
|
|
value: false
|
|
},
|
|
|
|
steps: { // 必须
|
|
type: Array,
|
|
value: []
|
|
},
|
|
|
|
className: String
|
|
}
|
|
}); |