Files
quinn-wx/components/divider/props.js
2022-12-01 17:21:12 +08:00

30 lines
477 B
JavaScript

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;