27 lines
432 B
JavaScript
27 lines
432 B
JavaScript
|
const props = {
|
||
|
appear: {
|
||
|
type: Boolean,
|
||
|
value: false,
|
||
|
},
|
||
|
customClass: {
|
||
|
type: String,
|
||
|
value: '',
|
||
|
},
|
||
|
destoryOnClose: {
|
||
|
type: Boolean,
|
||
|
value: false,
|
||
|
},
|
||
|
duration: {
|
||
|
type: Number,
|
||
|
},
|
||
|
name: {
|
||
|
type: String,
|
||
|
value: 't-transition',
|
||
|
},
|
||
|
visible: {
|
||
|
type: Boolean,
|
||
|
value: false,
|
||
|
},
|
||
|
};
|
||
|
export default props;
|