vue跳转的两种方法

1 标签跳转

 

<router-link to='two'><button>点我到第二个页面</button></router-link>

点击事件跳转

html :
    <button @click="hreftwo" class="test-one">点我到第二个页面</button>
js : methods:{ //跳转页面 hreftwo(){ this.$router.push({path:'/two'}) } }

 

 

posted @ 2018-10-23 15:08  傲似小仙女  阅读(73402)  评论(2编辑  收藏  举报