vue跳转到外部链接,vue页面的跳转
Vue项目中跳转外部链接google就用a标签跳转vue 页面跳转的两种方式1,标签跳转<router-link to='two.html'><button>点我到第二个页面</button></router-link>2,点击事件跳转html :<button @click="hreftwo" class="test-one">点我到第
·
Vue项目中跳转外部链接
google
就用a标签跳转
vue 页面跳转的两种方式
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' })
}
}
更多推荐
已为社区贡献2条内容
所有评论(0)