index.vue 347 B

12345678910111213141516
  1. <template>
  2. <view v-if="showGoTop" style="position: fixed;right: 30rpx;bottom: 13vh;" @tap="goTop">
  3. <uni-icons color="#ff770d" type="icon-4fanhuidingbucheng" size="37" custom-prefix="iconfont"/>
  4. </view>
  5. </template>
  6. <script setup>
  7. //点击回到顶部
  8. const showGoTop = false
  9. const goTop = () => {
  10. }
  11. </script>
  12. <style lang="scss">
  13. </style>