0.6.1 • Published 5 months ago

@oku-ui/portal v0.6.1

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

Portal

Portals provide a first-class way to render children into a DOM node that exists outside the DOM hierarchy of the parent component.

@oku-ui/portal

| |

Installation

$ pnpm add @oku-ui/portal

Documentation

Usage

<script setup lang="ts">
import { OkuPortal } from '@oku-ui/portal'
</script>

<template>
  <OkuPortal>
    <h1>This content is rendered in a portal (another DOM tree)</h1>
  </OkuPortal>
</template>

...