You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
591 B
26 lines
591 B
import { buildProps, definePropType } from '../../../utils/props.mjs';
|
|
|
|
const linkProps = buildProps({
|
|
type: {
|
|
type: String,
|
|
values: ["primary", "success", "warning", "info", "danger", "default"],
|
|
default: "default"
|
|
},
|
|
underline: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
disabled: { type: Boolean, default: false },
|
|
href: { type: String, default: "" },
|
|
icon: {
|
|
type: definePropType([String, Object]),
|
|
default: ""
|
|
}
|
|
});
|
|
const linkEmits = {
|
|
click: (evt) => evt instanceof MouseEvent
|
|
};
|
|
|
|
export { linkEmits, linkProps };
|
|
//# sourceMappingURL=link.mjs.map
|