Closed ipacs13 closed 1 year ago
Hi!
This component is so cool! However, I am having an issue currently on how to deal with this component in a modal.
I put VueWinBox in a modal component.
VueWinBox
I close the modal
When I open the modal again, I see this issue
VueWinBox doesn't load anymore.
This is my code:
<div @click.exact="close" class="modal fade slide-right" tabindex="-1" role="dialog" aria-hidden="true" > <ClientOnly> <VueWinBox v-if="editorOpen && viewportWidth >= 992" ref="winboxRef" :options="options" @close="close" > <!-- test only --> <iframe class="preview real" id="display-iframe" :src="previewUrl" frameborder="0" :key="previewUrl" @click.stop="" /> </VueWinBox> </ClientOnly>
Fixed in https://github.com/wobsoriano/vue-winbox/pull/12
Hi!
This component is so cool! However, I am having an issue currently on how to deal with this component in a modal.
I put
VueWinBox
in a modal component.I close the modal
When I open the modal again, I see this issue
VueWinBox
doesn't load anymore.This is my code: