hongluan-ui
Version:
Hongluan Component Library for Vue 3
37 lines (32 loc) • 751 B
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
require('../../../utils/index.js');
var validator = require('../../../utils/vue/validator.js');
const tagProps = {
closable: Boolean,
type: {
type: String,
validator: validator.isValidComponentType
},
disableTransitions: Boolean,
size: {
type: String,
validator: validator.isValidComponentSize
},
hit: Boolean,
color: {
type: String,
default: ""
},
effect: String,
outline: Boolean,
round: Boolean,
active: Boolean
};
const tagEmits = {
close: (evt) => evt instanceof MouseEvent,
click: (evt) => evt instanceof MouseEvent
};
exports.tagEmits = tagEmits;
exports.tagProps = tagProps;
//# sourceMappingURL=tag2.js.map