123456789101112131415161718192021222324252627282930 |
- const props = {
- content: {
- type: String,
- },
- extra: {
- type: String,
- },
- marquee: {
- type: Object,
- optionalTypes: [Boolean],
- value: false,
- },
- prefixIcon: {
- type: String,
- value: '',
- },
- suffixIcon: {
- type: String,
- value: '',
- },
- theme: {
- type: String,
- value: 'info',
- },
- visible: {
- type: Boolean,
- value: null,
- },
- };
- export default props;
|