index.js 377 B

123456789101112131415161718
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', { value: true });
  3. var component_1 = require('../common/component');
  4. component_1.VantComponent({
  5. props: {
  6. color: String,
  7. vertical: Boolean,
  8. type: {
  9. type: String,
  10. value: 'circular',
  11. },
  12. size: String,
  13. textSize: String,
  14. },
  15. data: {
  16. array12: Array.from({ length: 12 }),
  17. },
  18. });