index.js 528 B

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