首先需要对按钮绑定一个函数,然后在函数里进行页面路由的改变。
这里要确保项目中已经在使用vue-router。
如图,我想要跳转到这个index.vue页面
那么按钮绑定的函数里的路径应该这么写:
然后需要在router文件夹下的index.js里进行该页面的注册:
最主要的是我红框里的内容
代码如下文章来源:https://www.toymoban.com/news/detail-563109.html
{
path: '/directory',
component: Layout,
name: 'Directory',
meta: {
title: 'Directory',
icon: 'el-icon-s-cooperation'
},
redirect: '/directory/index',
children: [
{
path: '',
name: 'Directory',
component: () => import('@/views/directory/index'),
meta: { title: 'navRoute.directory', icon: 'el-icon-s-cooperation', roles: ['user'] }
},
{
path: 'newfilter/index',
name: 'Newfilter',
hidden: true,
component: () => import('@/views/directory/newfilter/index'),
meta: { title: 'navRoute.newfilter', roles: ['user'] }
},
{ path: '*', redirect: 'directory/index', hidden: true }
]
},
然后就可以跳转成功啦!文章来源地址https://www.toymoban.com/news/detail-563109.html
到了这里,关于vue点击按钮实现跳转到另一个vue页面的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!