index.js 611 B

123456789101112131415161718192021222324252627282930
  1. import { VantComponent } from '../common/component';
  2. VantComponent({
  3. props: {
  4. show: Boolean,
  5. customStyle: String,
  6. duration: {
  7. type: null,
  8. value: 300,
  9. },
  10. zIndex: {
  11. type: Number,
  12. value: 1,
  13. },
  14. lockScroll: {
  15. type: Boolean,
  16. value: true,
  17. },
  18. rootPortal: {
  19. type: Boolean,
  20. value: false,
  21. },
  22. },
  23. methods: {
  24. onClick() {
  25. this.$emit('click');
  26. },
  27. // for prevent touchmove
  28. noop() { },
  29. },
  30. });