index.js 703B

1234567891011121314151617181920212223242526272829303132
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. var component_1 = require("../common/component");
  4. component_1.VantComponent({
  5. props: {
  6. show: Boolean,
  7. mask: Boolean,
  8. message: String,
  9. forbidClick: Boolean,
  10. zIndex: {
  11. type: Number,
  12. value: 1000,
  13. },
  14. type: {
  15. type: String,
  16. value: 'text',
  17. },
  18. loadingType: {
  19. type: String,
  20. value: 'circular',
  21. },
  22. position: {
  23. type: String,
  24. value: 'middle',
  25. },
  26. },
  27. methods: {
  28. // for prevent touchmove
  29. noop: function () { },
  30. },
  31. });