mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-27 20:06:36 +08:00
16 lines
207 B
Vue
16 lines
207 B
Vue
<template>
|
|
<div class="zan-swipe-item">
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'zan-swipe-item',
|
|
|
|
beforeCreate() {
|
|
this.$parent.swipes.push(this);
|
|
}
|
|
};
|
|
</script>
|