1、用點擊函數
<button class="btntop" @click="gootherpage">跳轉頁面</button>
函數
gootherpage(){ this.$router.push('/FileDetail') },
2、rooterlink
<router-link to="/FileDetail" tag='a'>詳情 </router-link>
注以上方法都需要先配置頁面的路由
{ path: '/FileDetail', name:'FileDetail', component: FileDetail }