12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <template>
- <view>
- <van-transition
- :show="show"
- custom-class="van-overlay"
- :custom-style="'z-index: ' + zIndex + '; ' + customStyle"
- :duration="duration"
- @tap.native="onClick"
- @touchmove.native.stop.prevent="noop"
- >
- <slot></slot>
- </van-transition>
- </view>
- </template>
- <script>
- 'use strict';
- Object.defineProperty(exports, '__esModule', {
- value: true
- });
- var component_1 = require('../common/component');
- component_1.VantComponent({
- props: {
- show: Boolean,
- customStyle: String,
- duration: {
- type: null,
- value: 300
- },
- zIndex: {
- type: Number,
- value: 1
- }
- },
- methods: {
- onClick: function () {
- this.$emit('click');
- },
- // for prevent touchmove
- noop: function () {}
- }
- });
- </script>
- <style>
- @import './index.css';
- </style>
|