> A Portal Component for Vue 3, to render DOM outside of a component, anywhere in the document.
npm install portal-vue> A Portal Component for Vue 3, to render DOM outside of a component, anywhere in the document.

For more detailed documentation and additional Information, please visit the docs.
> Looking for the version for Vue 2.\? Docs for PortalVue 2., compatible with Vue 2, are here
``bash
npm i portal-vue
yarn add portal-vue
`
`javascript`
import PortalVue from 'portal-vue'
Vue.use(PortalVue)
` This slot content will be rendered wherever the html
is located.
`
Add portal-vue/nuxt to modules section of nuxt.config.js
`javascript``
{
modules: ['portal-vue/nuxt']
}