index.js 582 B

123456789101112131415161718192021222324
  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. showPivot: {
  12. type: Boolean,
  13. value: true
  14. },
  15. color: {
  16. type: String,
  17. value: color_1.BLUE
  18. },
  19. textColor: {
  20. type: String,
  21. value: '#fff'
  22. }
  23. }
  24. });