45 lines
722 B
JavaScript
45 lines
722 B
JavaScript
|
const props = {
|
||
|
content: {
|
||
|
type: null,
|
||
|
},
|
||
|
direction: {
|
||
|
type: String,
|
||
|
value: 'horizontal',
|
||
|
},
|
||
|
externalClasses: {
|
||
|
type: Array,
|
||
|
},
|
||
|
operation: {
|
||
|
type: String,
|
||
|
},
|
||
|
interval: {
|
||
|
type: Number,
|
||
|
value: 2000,
|
||
|
},
|
||
|
marquee: {
|
||
|
type: null,
|
||
|
value: false,
|
||
|
},
|
||
|
prefixIcon: {
|
||
|
type: null,
|
||
|
value: true,
|
||
|
},
|
||
|
suffixIcon: {
|
||
|
type: null,
|
||
|
value: null,
|
||
|
},
|
||
|
theme: {
|
||
|
type: String,
|
||
|
value: 'info',
|
||
|
},
|
||
|
visible: {
|
||
|
type: Boolean,
|
||
|
value: null,
|
||
|
},
|
||
|
defaultVisible: {
|
||
|
type: Boolean,
|
||
|
value: false,
|
||
|
},
|
||
|
};
|
||
|
export default props;
|