statistic.js 682 B

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