UNPKG

hongluan-ui

Version:
27 lines (24 loc) 574 B
import '../../../utils/index.mjs'; import { buildProps } from '../../../utils/vue/props/runtime.mjs'; const linkProps = buildProps({ type: { type: String, values: ["primary", "success", "warning", "info", "danger", ""], default: "" }, underline: { type: [Boolean, String], default: false }, disabled: Boolean, href: { type: String, default: "" }, target: { type: String, default: "_self" } }); const linkEmits = { click: (evt) => evt instanceof MouseEvent }; export { linkEmits, linkProps }; //# sourceMappingURL=link.mjs.map