16 lines
262 B
JavaScript
16 lines
262 B
JavaScript
import { commonProps } from "../ele-modal/props";
|
|
import props$1 from "./components/props";
|
|
const props = {
|
|
...commonProps,
|
|
...props$1,
|
|
show: Boolean,
|
|
title: String,
|
|
width: {
|
|
type: String,
|
|
default: "780px"
|
|
}
|
|
};
|
|
export {
|
|
props as default
|
|
};
|