1234567891011121314151617181920212223242526272829 |
- 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;
|