index.js 470 B

12345678910111213141516171819
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. var component_1 = require("../common/component");
  4. var color_1 = require("../common/color");
  5. component_1.VantComponent({
  6. props: {
  7. icon: String,
  8. steps: Array,
  9. active: Number,
  10. direction: {
  11. type: String,
  12. value: 'horizontal'
  13. },
  14. activeColor: {
  15. type: String,
  16. value: color_1.GREEN
  17. }
  18. }
  19. });