index.js 336B

123456789101112131415161718
  1. import { VantComponent } from '../common/component';
  2. VantComponent({
  3. props: {
  4. size: {
  5. type: String,
  6. value: '30px'
  7. },
  8. type: {
  9. type: String,
  10. value: 'circular'
  11. },
  12. color: {
  13. type: String,
  14. value: '#c9c9c9'
  15. }
  16. }
  17. });