<template>
<VvPopUp :shellContH="2" :zIndex="10" refs="pop">
<div>
......
</div>
</VvPopUp>
<span @click="showPop">showPop</span>
<span @click="closePop">closePop</span>
</template>
<script>
export default {
name: 'App',
data() {
return {};
},
methods: {
showPop() {
this.refs.pop.slideUpShell();
},
closePop () {
this.refs.pop.slideDownShell();
}
}
};