You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
402 B
26 lines
402 B
1 year ago
|
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;
|