vant-weapp/dist/steps/index.js
2019-03-09 12:30:26 +08:00

18 lines
375 B
JavaScript

import { VantComponent } from '../common/component';
import { GREEN } from '../common/color';
VantComponent({
props: {
icon: String,
steps: Array,
active: Number,
direction: {
type: String,
value: 'horizontal'
},
activeColor: {
type: String,
value: GREEN
}
}
});