vue.js怎么进行页面跳转?下面本篇文章给大家介绍一下Vue路由实现页面跳转的方式。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。

b3831bd3635a8e178440da16f82d6cd9.png

Vue路由实现页面跳转的方式

Vue.js 路由可以通过不同的 URL 访问不同的内容,实现多视图的单页 Web 应用

1、通过 实现

组件用于设置一个导航链接,切换不同 HTML 内容

使用方法:

简单写法demo2

使用 v-bind 的写法demo2

demo2

传参的写法demo2

这里传参需要在 router.js 中对 demo2 的路径进行配置,在 path 中 demo2 后添加通配符 : 和对应的 userId,如下:{

path: ‘/demo2/:userId‘,

name: ‘demo2‘,

component: demo2

},

配置完成后,页面跳转的结果就为 /demo2/123

这里的“123”就是上面的 userId

那么,如何在新页面中获取到传过来的参数 userId 呢?

在 mounted 钩子中使用 this.$route.params.xx. 获取传过来的参数,如下:mounted () {

alert(this.$route.params.userId)

}

// 弹出123

传入地址键值对demo2

页面跳转的结果为 /demo2?plan=private

(注意这里不用在 router.js 里配置路径)

在新页面中获取到传过来的地址键值对 plan,可以在 mounted 钩子中使用 this.$route.plan.xx. 获取传过来的地址键值对,如下:mounted () {

alert(this.$route.query.plan)

}

// 弹出private

2、通过 JS 实现

template 部分:跳转页面

script 部分:

(注意这里是 router,上面是 route)

简单写法methods:{

toURL(){

this.$router.push({ path: ‘/demo2‘ })

}

}

传参的写法methods:{

toURL(){

this.$router.push({ name: ‘demo2‘, params: { userId: 123 }})

}

}

传入地址键值对methods:{

toURL(){

this.$router.push({

name: ‘demo2‘,

params: { userId: 123 },

query: { plan: ‘private‘ }

})

}

}

更多web开发知识,请查阅 HTML中文网 !!

Logo

前往低代码交流专区

更多推荐