vue實現頁面跳轉(簡易版)

一、用點擊函數函數

 <button  class="btntop" @click="gootherpage">跳轉頁面</button>

函數this

gootherpage(){
              this.$router.push('/FileDetail')
          },

 

二、rooterlinkspa

<router-link to="/FileDetail"  tag='a'>詳情 </router-link>

 

 

 

 

注以上方法都須要先配置頁面的路由code

  {
      path: '/FileDetail',
      name:'FileDetail',
      component: FileDetail
    }
相關文章
相關標籤/搜索