-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
[Bug report]使用插件渲染Menu、MiniMap等会报错(vue3) #1311
Labels
bug
Something isn't working
Comments
可以拉取一下这个demo https://github.com/fanwww/logic_flow |
是 <router-view v-slot="{ Component,route }">
<Transition name="fade" mode="out-in">
<keep-alive :exclude="['logicflow2']">
<Suspense>
<!-- 主要内容 -->
<component :is="Component" :key="route.path" :name="route.name"></component>
<!-- 加载中状态 -->
<template #fallback>
正在加载...
</template>
</Suspense>
</keep-alive>
</Transition>
</router-view> 换成: <router-view v-slot="{ Component,route }">
<Transition name="fade" mode="out-in">
<keep-alive :exclude="['logicflow2']">
<component :is="Component" :key="route.path" :name="route.name"></component>
</keep-alive>
</Transition>
</router-view> 至于 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
问题描述
使用插件渲染Menu、MiniMap等会报错,需要手动刷新才会加载出来
最简复现
可去这个网站看一下,不过生产环境没有报错信息,上面的报错是开发环境的报错,但是问题依然存在
https://superfan-fan.gitee.io/myweb/#/mindMaping/talking
相关信息 context
LogicFlow Version:
"@logicflow/core": "^1.2.12",
"@logicflow/extension": "^1.2.13",
Node Version:v16.17.0
Platform:vue3
The text was updated successfully, but these errors were encountered: