city-casereport/miniprogram_npm/tdesign-miniprogram/transition/props.js
2023-12-06 14:22:42 +08:00

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;