vue页面跳转方式

1.标签跳转 router-link

   

2,点击事件跳转

html :

  

js :

  methods:{ 
  			//跳转页面

                hreftwo(){

                          this.$router.push({ path:'/two.html'  })

                            }

                   }

你可能感兴趣的:(vue页面跳转方式)