You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi mate! I was running into some issues with vue-simple-portal in Nuxt because it was importing another Vue instance so I was getting the usual “$attrs is readonly” “$listeners is readonly” errors.
I got it fixed by changing the import statement to
- import { Portal } from '@linusborg/vue-simple-portal'+ import { Portal } from '@linusborg/vue-simple-portal/dist/index.umd'
but I wanted to double check if this is intended behavior or if I'm actually doing something wrong here 😇