您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
这篇“vue怎么实现本项目页面之间跳转”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“vue怎么实现本项目页面之间跳转”文章吧。
button按钮加入click事件
<el-button type="primary" @click="func()">添加试题</el-button>
func() { this.$router.push({ path: "add-question" }); },
加入所有跳转的本地界面
问题描述:两个不同的页面,进行带参数跳转
1、需要跳转的页面,创建跳转方法。
//@click="PageJump(scope.row)" //具体如下: <el-table-column label="跳转页面" align="center" class-name="small-padding fixed-width"> <template slot-scope="scope"> <el-button size="mini" type="text" icon="el-icon-view" @click="PageJump(scope.row)" >点击跳转</el-button> </template> </el-table-column> PageJump(row) { this.$router.push({ path: "/页面/具体/路径/" + row.id, params: { id: row.id } }); }
2、配置路由(一般是router.js文件)
{ path: '/文件目录路径', component: Layout, hidden: true, children: [ { path: 'PageJump/data/:OtherId(\\d+)', component: (resolve) => require(['@/views/跳转到的页面路径/index'], resolve), name: 'PageJump', meta: { title: '跳转到的页面', icon: '' } } ] }
按照这样基本可以完成带参数的页面跳转。
以上就是关于“vue怎么实现本项目页面之间跳转”这篇文章的内容,相信大家都有了一定的了解,希望小编分享的内容对大家有帮助,若想了解更多相关的知识内容,请关注亿速云行业资讯频道。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。