index.vue 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <template>
  2. <view :class="'i-class i-drawer ' + (visible ? 'i-drawer-show' : '') + ' ' + ('i-drawer-' + mode)">
  3. <view v-if="mask" class="i-drawer-mask" @tap="handleMaskClick"></view>
  4. <view class="i-drawer-container">
  5. <slot></slot>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {};
  13. },
  14. externalClasses: ['i-class'],
  15. props: {
  16. visible: {
  17. type: Boolean,
  18. default: false
  19. },
  20. mask: {
  21. type: Boolean,
  22. default: true
  23. },
  24. maskClosable: {
  25. type: Boolean,
  26. default: true
  27. },
  28. mode: {
  29. type: String,
  30. default: 'left' // left right
  31. }
  32. },
  33. methods: {
  34. handleMaskClick() {
  35. if (!this.maskClosable) {
  36. return;
  37. }
  38. this.$emit('close', {
  39. detail: {}
  40. });
  41. }
  42. },
  43. created: function () {}
  44. };
  45. </script>
  46. <style>
  47. @import './index.css';
  48. </style>