mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
23 lines
354 B
Vue
23 lines
354 B
Vue
<template>
|
|
<div class="van-swipe-item">
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'van-swipe-item',
|
|
|
|
beforeCreate() {
|
|
this.$parent.swipes.push(this);
|
|
},
|
|
|
|
destroyed() {
|
|
const index = this.$parent.swipes.indexOf(this);
|
|
if (index > -1) {
|
|
this.$parent.swipes.splice(index, 1);
|
|
}
|
|
}
|
|
};
|
|
</script>
|