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