index.js 422 B

12345678910111213141516171819
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. var component_1 = require("../common/component");
  4. component_1.VantComponent({
  5. props: {
  6. size: {
  7. type: String,
  8. value: '30px'
  9. },
  10. type: {
  11. type: String,
  12. value: 'circular'
  13. },
  14. color: {
  15. type: String,
  16. value: '#c9c9c9'
  17. }
  18. }
  19. });