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.
31 lines
687 B
31 lines
687 B
'use strict';
|
|
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
|
var props = require('../../../utils/props.js');
|
|
|
|
const linkProps = props.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: props.definePropType([String, Object]),
|
|
default: ""
|
|
}
|
|
});
|
|
const linkEmits = {
|
|
click: (evt) => evt instanceof MouseEvent
|
|
};
|
|
|
|
exports.linkEmits = linkEmits;
|
|
exports.linkProps = linkProps;
|
|
//# sourceMappingURL=link.js.map
|