17 lines
287 B
JavaScript
17 lines
287 B
JavaScript
import { commonProps } from "../ele-modal/props";
|
|
import props$1 from "../ele-cropper/props";
|
|
const props = {
|
|
...commonProps,
|
|
...props$1,
|
|
show: Boolean,
|
|
title: String,
|
|
width: {
|
|
type: String,
|
|
default: "680px"
|
|
},
|
|
dialogStyle: Object
|
|
};
|
|
export {
|
|
props as default
|
|
};
|