vant/packages/popup/index.vue
2018-11-29 22:20:42 +08:00

42 lines
718 B
Vue

<template>
<transition :name="currentTransition">
<div
v-if="shouldRender"
v-show="value"
:class="b({ [position]: position })"
>
<slot />
</div>
</transition>
</template>
<script>
import create from '../utils/create';
import Popup from '../mixins/popup';
export default create({
name: 'popup',
mixins: [Popup],
props: {
position: String,
transition: String,
overlay: {
type: Boolean,
default: true
},
closeOnClickOverlay: {
type: Boolean,
default: true
}
},
computed: {
currentTransition() {
return this.transition || (this.position ? `popup-slide-${this.position}` : 'van-fade');
}
}
});
</script>