hongluan-ui
Version:
Hongluan Component Library for Vue 3
40 lines (36 loc) • 627 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
const alertProps = {
title: {
type: String,
default: ""
},
description: {
type: String,
default: ""
},
type: {
type: String,
default: ""
},
closable: {
type: Boolean,
default: true
},
closeText: {
type: String,
default: ""
},
showIcon: Boolean,
dashed: Boolean,
effect: {
type: String,
default: ""
}
};
const alertEmits = {
close: (evt) => evt instanceof MouseEvent
};
exports.alertEmits = alertEmits;
exports.alertProps = alertProps;
//# sourceMappingURL=alert.js.map