17 lines
362 B
JavaScript
Raw Normal View History

2020-06-09 16:17:23 +08:00
var o = require("../common/component"), r = require("../common/color");
(0, o.VantComponent)({
props: {
icon: String,
steps: Array,
active: Number,
direction: {
type: String,
value: "horizontal"
},
activeColor: {
type: String,
value: r.GREEN
}
}
});