Hi, nice package it looks great!
When using i did come across some issues in the console, everything still seems to be working fine. The errors appear once the modal is shown
[Vue warn]: $listeners is readonly.
found in
---> <VueSimplePortal>
<VueModal>
<AddProductWithoutOptions> at resources/js/frontend/components/AddProductWithoutOptions.vue
<Root>
[Vue warn]: $attrs is readonly.
found in
---> <VueSimplePortal>
<VueModal>
<AddProductWithoutOptions> at resources/js/frontend/components/AddProductWithoutOptions.vue
<Root>
I'm importing the package using webpack (laravel mix)
import VueModal from '@kouts/vue-modal';
Vue.component('Modal', VueModal);
const app = new Vue({
el: '#app',
});
<button class="btn btn-primary" @click="modal = !modal">Open modal</button>
<modal v-model="modal">
</modal>
Hi, nice package it looks great!
When using i did come across some issues in the console, everything still seems to be working fine. The errors appear once the modal is shown
I'm importing the package using webpack (laravel mix)