Files
wx_oms/components/scroll.vue

26 lines
331 B
Vue
Raw Normal View History

2022-08-08 09:22:43 +08:00
<template>
<scroll-view @scrolltolower='scrolltolower' style="height: 100%;overflow: auto; ">
<slot></slot>
</scroll-view>
</template>
<script>
export default {
name:"scroll",
data() {
return {
};
},
methods:{
scrolltolower(){
this.$emit('scrolltolower')
}
}
}
</script>
<style>
</style>