UNPKG

element-plus

Version:

A Component Library for Vue 3

33 lines (30 loc) 669 B
import '../../../utils/index.mjs'; import { buildProps } from '../../../utils/vue/props/runtime.mjs'; import { iconPropType } from '../../../utils/vue/icon.mjs'; const dialogContentProps = buildProps({ center: Boolean, alignCenter: Boolean, closeIcon: { type: iconPropType }, draggable: Boolean, overflow: Boolean, fullscreen: Boolean, showClose: { type: Boolean, default: true }, title: { type: String, default: "" }, ariaLevel: { type: String, default: "2" } }); const dialogContentEmits = { close: () => true }; export { dialogContentEmits, dialogContentProps }; //# sourceMappingURL=dialog-content2.mjs.map