statistic.js 718 B

1234567891011121314151617181920212223242526272829303132333435
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', { value: true });
  3. require('../../../utils/index.js');
  4. var runtime = require('../../../utils/vue/props/runtime.js');
  5. const statisticProps = runtime.buildProps({
  6. decimalSeparator: {
  7. type: String,
  8. default: "."
  9. },
  10. groupSeparator: {
  11. type: String,
  12. default: ","
  13. },
  14. precision: {
  15. type: Number,
  16. default: 0
  17. },
  18. formatter: Function,
  19. value: {
  20. type: runtime.definePropType([Number, Object]),
  21. default: 0
  22. },
  23. prefix: String,
  24. suffix: String,
  25. title: String,
  26. valueStyle: {
  27. type: runtime.definePropType([String, Object, Array])
  28. }
  29. });
  30. exports.statisticProps = statisticProps;
  31. //# sourceMappingURL=statistic.js.map