element-plus
Version:
A Component Library for Vue 3
41 lines (38 loc) • 749 B
JavaScript
import '../../../utils/index.mjs';
import { buildProps } from '../../../utils/vue/props/runtime.mjs';
import { iconPropType } from '../../../utils/vue/icon.mjs';
const dialogContentProps = buildProps({
center: {
type: Boolean,
default: false
},
closeIcon: {
type: iconPropType,
default: ""
},
customClass: {
type: String,
default: ""
},
draggable: {
type: Boolean,
default: false
},
fullscreen: {
type: Boolean,
default: false
},
showClose: {
type: Boolean,
default: true
},
title: {
type: String,
default: ""
}
});
const dialogContentEmits = {
close: () => true
};
export { dialogContentEmits, dialogContentProps };
//# sourceMappingURL=dialog-content.mjs.map