index.js 689 B

1234567891011121314151617181920212223242526272829
  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. inactive: Boolean,
  8. percentage: Number,
  9. pivotText: String,
  10. pivotColor: String,
  11. trackColor: String,
  12. showPivot: {
  13. type: Boolean,
  14. value: true
  15. },
  16. color: {
  17. type: String,
  18. value: color_1.BLUE
  19. },
  20. textColor: {
  21. type: String,
  22. value: '#fff'
  23. },
  24. strokeWidth: {
  25. type: null,
  26. value: 4
  27. }
  28. }
  29. });