36 lines
809 B
JavaScript
36 lines
809 B
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
|
var runtime = require('../../../utils/vue/props/runtime.js');
|
|
var icon = require('../../../utils/vue/icon.js');
|
|
|
|
const linkProps = runtime.buildProps({
|
|
type: {
|
|
type: String,
|
|
values: ["primary", "success", "warning", "info", "danger", "default"],
|
|
default: void 0
|
|
},
|
|
underline: {
|
|
type: [Boolean, String],
|
|
values: [true, false, "always", "never", "hover"],
|
|
default: void 0
|
|
},
|
|
disabled: Boolean,
|
|
href: { type: String, default: "" },
|
|
target: {
|
|
type: String,
|
|
default: "_self"
|
|
},
|
|
icon: {
|
|
type: icon.iconPropType
|
|
}
|
|
});
|
|
const linkEmits = {
|
|
click: (evt) => evt instanceof MouseEvent
|
|
};
|
|
|
|
exports.linkEmits = linkEmits;
|
|
exports.linkProps = linkProps;
|
|
//# sourceMappingURL=link.js.map
|