提供一个vue的模态框路由思路?
问题很简单,主要是想请教下思路。
网站由以下几个页面组成:
|-首页 index.vue 对应路由:/
|-文章频道 article.vue 对应路由:/article
|--文章详情 id.vue 对应路由:/article/123
需求是
1、现在是需要有个模态框弹出文章内容,同时弹窗地址会变化,即:/article/123,但无论是从首页点进去还是文章频道页面点开的路由,都模态框后面的内容均不变
2、如果模态框作为子路由还好些,但是如果做不同路由就麻烦了,也就是article频道页面,点击是可以弹出来的,但是在首页点击进入相同的页面,因为是不同的路由,就会跳转到文章频道再弹出文章详情,显然不符合逻辑。
就像:https://dribbble.com/一样,点击内容列表,弹出模态框,点击空白关闭,我做了个路由守卫,就是出现了线条转文章频道在弹出文章详情的问题了。
3、本来想着使用 <roter-view name="modal">
的方式来做,但是发现路由配置components:{modal:asyncComponents('article/id')}
无效,是因为我使用VUE3的问题么?
/** 路由设置:router.js **/
{
path: '/',
name: 'index',
component: asyncComponents('index'),
children: [
{
path: '/',
name: 'index',
component: asyncComponents('home/index')
},
path: '/article',
name: 'article',
component: asyncComponents('index'),
children: [
{
path: 'article/:id',
name: 'article-id',
component: asyncComponents('article/id')
}
]
]
]
}
/** 路由守卫 **/
router.beforeEach((to, from, next) => {
// 本想只用modalEnable来做,但是会始终始终满足跳转,所以将 modalEnable设置为false,并使用modalOpen作为新参数
if (!!from.name && to.params['modalEnable'] === 'true') {
to.params['modalEnable'] = false;
to.params['modalOpen'] = true;
router.push({ name: `article-id`, params: to.params
};
next();
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
构思:
问题:
地址栏返回的时候应该是返回上上页
你用的 asyncComponents 是什么?我猜是
() => import('./my-async-component')
的封装?这东西不能封装,动态 import 在 webpack 下要用字符串字面量才能正常解析,你套一层封装然后传递变量 webpack 就认不出来了,没法给你做打包和自动代码分割。