city-casereport/miniprogram_npm/tdesign-miniprogram/divider/props.js

26 lines
402 B
JavaScript
Raw Normal View History

2023-12-06 14:22:42 +08:00
const props = {
align: {
type: String,
value: 'center',
},
content: {
type: String,
},
style: {
type: String,
value: '',
},
dashed: {
type: Boolean,
value: false,
},
externalClasses: {
type: Array,
},
layout: {
type: String,
value: 'horizontal',
},
};
export default props;