[测评系统]--前端(用户答题页面)
yj
2024-11-18 0f3a72e00606a7626406fcd76f97098d99686481
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>