vue怎么实现A页面跳转到B页面

您所在的位置:网站首页 vue如何实现页面跳转 vue怎么实现A页面跳转到B页面

vue怎么实现A页面跳转到B页面

#vue怎么实现A页面跳转到B页面| 来源: 网络整理| 查看: 265

vue实现A页面跳转到B页面的方法:1、设置A页面,代码如“”;2、将跳转的url添加到$router中;3、设置B页面,代码如“created() {...}”;4、修改js内容即可。

本文操作环境:windows7系统、Vue2.9.6版,DELL G3电脑。

vue怎么实现A页面跳转到B页面?

vue 从A界面跳转到B界面并携带参数

最近遇到一个需求,需要从A界面点击一个按钮跳转到B界面,并且携带参数。

我是这样子实现了需求:

A页面:

{{$t('common.add')}} {{ $t('common.edit') }}

点击事件:

add() { this.lockTaskStatus = 'new' this.toLockTaskManagePage()},edit() { this.lockTaskStatus = 'edit' this.toLockTaskManagePage()},toLockTaskManagePage() { this.$router.push({ path: '/taskLockManage', name: 'TaskLockManage', params: { status: this.lockTaskStatus } })}

将将跳转的url添加到 $router中。

path 中的url 最前面加 / 代表是根目录下,不加则表示是子路由。

通过path + params的组合传递参数。

B页面:

created() { this.getParams() }, watch: { // 监测路由变化,只要变化了就调用获取路由参数方法将数据存储本组件即可 $route: 'getParams' }, methods: { getParams() { // 取到路由带过来的参数 const res = this.$route.params.status console.log('getParams', res) }}

最后,还需在router/index.js中注册:

{ path: '/taskLockManage', component: Layout, redirect: '/taskManage/index', hidden: true, children: [ { path: 'taskLockManage', component: () => import('@/views/taskManage/taskLockManage'), name: 'TaskLockManage', meta: { title: 'taskLockManage', icon: 'user', noCache: true } } ]}

这样,便可实现了跳转。(PS:这是目前发现的比较好的方法,希望哪位大佬有更好的方法指导。)

相关推荐:《vue.js教程》

以上就是vue怎么实现A页面跳转到B页面的详细内容,更多请关注php中文网其它相关文章!



【本文地址】


今日新闻


推荐新闻


CopyRight 2018-2019 办公设备维修网 版权所有 豫ICP备15022753号-3