UNPKG

element-plus

Version:

A Component Library for Vue 3

34 lines (31 loc) 700 B
import '../../../utils/index.mjs'; import { buildProps } from '../../../utils/vue/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", "default", "small"] }, 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