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