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

30 lines
477 B
JavaScript
Raw Permalink Normal View History

2025-04-15 15:44:51 +08:00
const props = {
align: {
type: String,
value: 'center',
},
content: {
type: String,
},
dashed: {
type: Boolean,
value: false,
},
externalClasses: {
type: Array,
},
layout: {
type: String,
value: 'horizontal',
},
lineColor: {
type: String,
value: '',
},
theme: {
type: String,
value: 'horizontal',
},
};
export default props;