2020-07-16 14:12:31 +08:00

20 lines
307 B
Vue

<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>