1,標簽跳轉
<router-link to='two.html'><button>點我到第二個頁面</button></router-link>
2,點擊事件跳轉
html :
<button @click="hreftwo" class="test-one">點我到第二個頁面</button>
js :
methods:{ //跳轉頁面
hreftwo(){
this.$router.push({ path:'/two.html' })
}
}
3,如果你要的只是點擊跳轉返回上一頁,請看我另一篇博文
鏈接:https://www.cnblogs.com/lgnblog/p/9957661.html
