dengrui/components/backTop.vue

37 lines
760 B
Vue
Raw Permalink Normal View History

2021-08-26 01:49:06 +00:00
<template>
<view>
<view v-if="showTop" style="position: fixed;right: 20rpx;bottom: 120rpx;">
<image class="animated pulse infinite" style="width: 60rpx;height: 50rpx;" @tap="backTop" src="../static/img/public/backTop.png"></image>
</view>
</view>
</template>
<script>
export default {
name:"backTop",
props:{
showTop:{
type:Boolean,
default:false
}
},
data() {
return {
};
},
onPageScroll(e) {
// console.log(e);
},
methods:{
backTop(){
this.$emit('backTop')
}
}
}
</script>
<style>
</style>