index.js 339B

1234567891011121314151617
  1. import { VantComponent } from '../common/component';
  2. VantComponent({
  3. props: {
  4. color: String,
  5. vertical: Boolean,
  6. type: {
  7. type: String,
  8. value: 'circular',
  9. },
  10. size: String,
  11. textSize: String,
  12. },
  13. data: {
  14. array12: Array.from({ length: 12 }),
  15. },
  16. });