baizonghao
2023-08-04 8fee5b265eaa379b7a1cc51cd060a368c046de46
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>