vue中页面跳转

vue中页面跳转,第1张

1、找到router/index.js

2、在该文件中编辑

// 公共路由
export const constantRoutes = [
  
  编辑跳转
  {
    path: '/essay',
    component: Layout,
    hidden: true,
    redirect: 'noredirect',
    children: [
        {
            path: 'essayedit',
            component: (resolve) => require(['@/views/system/essayedit/index'], resolve),
            name: 'EssayEdit',
            meta: { title: '资讯编辑', icon: 'user' }
        }
    ]
},

/

3、在要跳转页面编辑

(我用的是方法跳转)

(1)不传参跳转

  文章编辑

 

    essayedit() {     
        this.$router.push({path:'essayedit'  })
    },

 跳转成功!!!

(2)传参跳转

   

   essayedit(row) {
  
        this.$router.push({path:'essayedit', query: {  id: row.essayId } })
    },

在接受页面打印出传的内容

    created() {
        
           console.log(this.$route.query)
          
         },

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/928263.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-17
下一篇 2022-05-17

发表评论

登录后才能评论

评论列表(0条)

保存