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'  })

                            }

                   }

在这里插入图片描述

Logo

前往低代码交流专区

更多推荐