1.0.0 • Published 8 months ago

@ambilight-taro/portal v1.0.0

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

@ambilight-taro/portal

NPM Version NPM Downloads

Installation

npm install @ambilight-taro/portal

Usage

传送门组件,对于 createPortal 的简单封装

<AlPortal>hey</AlPortal>

Disabled

<AlPortal disabled>hey</AlPortal>

Set container

<>
  <View id="test"></View>
  <AlPortal containerId="test">hey</AlPortal>
</>

Props

interface AlPortalProps {
  /**
   * 是否禁用 portal
   * @default false
   */
  disabled?: boolean
  /**
   * 容器 id
   * @default 默认将渲染到根容器
   */
  containerId?: string
  children?: any
}