comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
26 lines (25 loc) • 384 B
JavaScript
const messageOptions = {
type: String,
content: [String, Object],
icon: Object,
color: String,
showClose: Boolean,
duration: {
type: Number,
default: 3e3
},
showIcon: {
type: Boolean,
default: true
},
isVNode: Boolean
};
const messageProps = {
...messageOptions,
id: String,
close: Function,
destroy: Function
};
export {
messageProps
};