数通智联化工云平台
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.

36 lines
703 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({
2 years ago
center: Boolean,
alignCenter: Boolean,
3 years ago
closeIcon: {
type: iconPropType
},
customClass: {
type: String,
default: ""
},
2 years ago
draggable: Boolean,
fullscreen: Boolean,
3 years ago
showClose: {
type: Boolean,
default: true
},
title: {
type: String,
default: ""
2 years ago
},
ariaLevel: {
type: String,
default: "2"
3 years ago
}
});
const dialogContentEmits = {
close: () => true
};
export { dialogContentEmits, dialogContentProps };
//# sourceMappingURL=dialog-content.mjs.map