1.标签跳转
<router-link to ='xxx.html'><button>下一个页面</button></router-link>
2,点击事件跳转
html :
<button @click="nextPage">下一个页面</button>
js :
methods:{ //跳转页面
nextPage(){
this.$router.push({ path:'/xxx.html' })
}
}
1.标签跳转
<router-link to ='xxx.html'><button>下一个页面</button></router-link>
2,点击事件跳转
html :
<button @click="nextPage">下一个页面</button>
js :
methods:{ //跳转页面
nextPage(){
this.$router.push({ path:'/xxx.html' })
}
}
本文标题:vue基础篇-两种简单的页面跳转方式
本文链接:https://www.haomeiwen.com/subject/qoyrwltx.html
网友评论