跳至内容
本页内容

PortalVue 3.0.0

一个 Vue 3 组件,用于在 DOM 中的任何位置渲染组件模板。

使用示例

html
<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 anywhere in your App
  (i.e. right before the </body> tag, good for overlays).
  The slot content of the above portal component will be rendered here.
  -->
</portal-target>