water_xcx/miniprogram_npm/tdesign-miniprogram/transition/props.js

27 lines
432 B
JavaScript
Raw Permalink Normal View History

2025-04-15 15:44:51 +08:00
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;