UNPKG

@arco-design/web-vue

Version:

Arco Design Vue 2.0: A Vue.js 3 UI Library

7 lines (6 loc) 267 B
import { ComputedRef } from 'vue'; interface PopupContainerProps { popupContainer: string | HTMLElement | undefined; } export default function usePopupContainer(defaultPopupContainer: HTMLElement, props: PopupContainerProps): ComputedRef<HTMLElement>; export {};