-
Notifications
You must be signed in to change notification settings - Fork 52
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
Invalid prop: type check failed for prop "context". Expected Object, got Window #82
Comments
怎么使用的?可以给个简单的代码吗?context的默认值就是window,理论上不需要你单独传递 |
|
我的vue版本是2.7.14, 由于做了模块联邦共享所以DndProvider 并没有配置在app.vue中 在单独的组件配置的 但是如果不传入window的话 会有重复渲染的问题, 具体问题可以参考这个react-dnd/react-dnd#3257 |
按你这么说,你是在不同的模块内,都使用了DndProvider是吗?那是否可以理解为你的组件卸载时,你就要卸载对应的DndProvider,那你可以直接传递给DndProvider的context一个你的组件内部对象,比如 <template>
<DndProvider :backend="HTML5Backend" :context="dndContext">some thing</DndProvider>
</template>
<script setup>
const dndContext = {}
</script> |
我只在我的表单设计模块中使用了DndProvider 每次离开路由前都destory了一下 但是还是不行0,0 |
只有这一个页面引入了 |
意思是你的page卸载了,但是再次挂载的时候,提示已经存在Backend了? |
是的是的 切换多次路由就会发生这种问题 |
好的,我这边试一下,后续给你反馈 |
嗯嗯 谢了哈 |
我这边用路由尝试复现,但是并没有复现你的问题,你是否能提供一个简单的demo呢? |
希望可以拓展一下context类型, 在组件内使用的时候如果不传入window对象 拖拽组件会有重复渲染的报错
The text was updated successfully, but these errors were encountered: