-
Notifications
You must be signed in to change notification settings - Fork 129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
父应用是否不能使用vue-router? #9
Comments
目前设计的主应用是只有基础框架和共用部分,还有设计过你这种需求,如果主应用有足够多的逻辑处理,可以将其拆出来作为另一个子应用
在 2020-03-19 14:30:52,"DevyRvan" <[email protected]> 写道:
你好,我最近也在搞微前端
由于qiankun对子系统的跳转也是用到了跟vueRouter一样的h5的history
所以qiankun这边主应用的
不能写在里的组件,否则也会刷新掉页面无法获得,因此只能写在App.vue里面,这样导致侧栏跟标签页等也只能写在App.vue,甚至也不能使用VueRouter。 请教下你是否有解决方案或者思路?
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
@DevyRvan 我自己项目portal中使用了vue-router,不知道是不是你要的解决方案 https://github.com/Jenniferyingni/vue-cli-plugin-qiankun |
@Jenniferyingni 子系统入口跟 现在有个需求是搞一个登录页,不需要 所以想把 现在我的暂定解决方案是把登录的页面作为组件放在App.vue,用v-if配合登录逻辑来展示(当然这个做法很low),有时间再捣鼓一下,如果你有好的解决方案随时艾特。 再次感谢你的回答。 |
@DevyRvan |
你好,我最近也在搞微前端
由于qiankun对子系统的跳转也是用到了跟vueRouter一样的h5的history
所以qiankun这边主应用的
<div id="root-view" class="app-view-box" v-html="content"></div>
不能写在
<router-view />
里的组件,否则也会刷新掉页面无法获得,因此只能写在App.vue里面,这样导致侧栏跟标签页等也只能写在App.vue,甚至也不能使用VueRouter。请教下你是否有解决方案或者思路?
The text was updated successfully, but these errors were encountered: