index.js 324 B

123456789101112131415161718192021
  1. "use strict";
  2. var _component = require("../common/component");
  3. (0, _component.VantComponent)({
  4. props: {
  5. color: String,
  6. vertical: Boolean,
  7. type: {
  8. type: String,
  9. value: "circular"
  10. },
  11. size: String,
  12. textSize: String
  13. },
  14. data: {
  15. array12: Array.from({
  16. length: 12
  17. })
  18. }
  19. });