1、標籤跳轉
<router-link to='two'>
<button>點我到第二個頁面</button>
</router-link>
2、點選事件跳轉
<button @click="hreftwo" class="test-one">點我到第二個頁面</button>
js :
methods:{
//跳轉頁面
hreftwo(){
this.$router.push({path:'/two'})
}
}
本作品採用《CC 協議》,轉載必須註明作者和本文連結