UNPKG

@whitesev/pops

Version:

弹窗库,包含了alert、confirm、prompt、drawer、folder、loading、iframe、panel、tooltip、searchSuggestion、rightClickMenu组件

22 lines (20 loc) 416 B
import type { PopsInstGeneralConfig } from "./types/inst"; import type { PopsInstStoreType } from "./types/main"; /** * 弹窗实例数据 */ export const PopsInstData: { [key in PopsInstStoreType]: PopsInstGeneralConfig[]; } = { alert: [], confirm: [], drawer: [], folder: [], iframe: [], loading: [], panel: [], prompt: [], rightClickMenu: [], // 没有 searchSuggestion tooltip: [], };