index.js 291 Bytes
Newer Older
李嘉林 committed
1 2
import { VantComponent } from '../common/component';
VantComponent({
程默 committed
3 4 5 6 7 8
  props: {
    color: String,
    vertical: Boolean,
    type: {
      type: String,
      value: 'circular',
李嘉林 committed
9
    },
程默 committed
10 11 12 13 14 15
    size: String,
    textSize: String,
  },
  data: {
    array12: Array.from({ length: 12 }),
  },
李嘉林 committed
16
});