index.vue 989 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <template>
  2. <view>
  3. <van-transition
  4. :show="show"
  5. custom-class="van-overlay"
  6. :custom-style="'z-index: ' + zIndex + '; ' + customStyle"
  7. :duration="duration"
  8. @tap.native="onClick"
  9. @touchmove.native.stop.prevent="noop"
  10. >
  11. <slot></slot>
  12. </van-transition>
  13. </view>
  14. </template>
  15. <script>
  16. 'use strict';
  17. Object.defineProperty(exports, '__esModule', {
  18. value: true
  19. });
  20. var component_1 = require('../common/component');
  21. component_1.VantComponent({
  22. props: {
  23. show: Boolean,
  24. customStyle: String,
  25. duration: {
  26. type: null,
  27. value: 300
  28. },
  29. zIndex: {
  30. type: Number,
  31. value: 1
  32. }
  33. },
  34. methods: {
  35. onClick: function () {
  36. this.$emit('click');
  37. },
  38. // for prevent touchmove
  39. noop: function () {}
  40. }
  41. });
  42. </script>
  43. <style>
  44. @import './index.css';
  45. </style>