You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
792 B
44 lines
792 B
|
3 years ago
|
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
|
||
|
|
},
|
||
|
|
alignCenter: {
|
||
|
|
type: Boolean,
|
||
|
|
default: false
|
||
|
|
},
|
||
|
|
closeIcon: {
|
||
|
|
type: iconPropType
|
||
|
|
},
|
||
|
|
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
|