1.3.0 • Published 2 years ago

portal-kdu v1.3.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

PortalKdu

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

Installation

npm i portal-kdu
import PortalKdu from 'portal-kdu'
Kdu.use(PortalKdu)

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>
1.3.0

2 years ago