UNPKG

element-plus

Version:

A Component Library for Vue 3

33 lines (30 loc) 668 B
import { buildProps } from '../../../utils/props.mjs'; const tagProps = buildProps({ closable: Boolean, type: { type: String, values: ["success", "info", "warning", "danger", ""], default: "" }, hit: Boolean, disableTransitions: Boolean, color: { type: String, default: "" }, size: { type: String, values: ["large", "medium", "small", "mini"] }, effect: { type: String, values: ["dark", "light", "plain"], default: "light" } }); const tagEmits = { close: (evt) => evt instanceof MouseEvent, click: (evt) => evt instanceof MouseEvent }; export { tagEmits, tagProps }; //# sourceMappingURL=tag.mjs.map