xiangpei
2024-03-26 dd36e59f6ef5057dc6334ebb2a8e492c9786b04c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<template>
  <div id="app">
    <router-view />
    <back-to-top :visibility-height="100" :back-position="0" transition-name="fade" ref="backTop"/>
  </div>
 
</template>
 
<script>
 
import BackToTop from '@/components/BackToTop'
 
export default {
  name: 'App',
  components: {
    BackToTop
  }
}
</script>