PortalVue

A Portal Component for Vuejs, to render DOM outside of a component, anywhere in the document.

The documentation is for version 1.3.0-beta, but all things except the sections about scoped slots apply to previous versions as well.

Installation

npm i portal-vue
import PortalVue from 'portal-vue'
Vue.use(PortalVue)

Usage

<portal to="destination">
  <p>This slot content will be rendered wherever the <portal-target> with name 'destination'
    is  located.</p>
</portal>

<portal-target name="destination">
  <!--
  This component can be located anwhere in your App.
  The slot content of the above portal component will be rendered here.
  -->
</portal-target>

GitHub