xdesign-vue-next
Version:
XDesign Component for vue-next
28 lines (25 loc) • 501 B
JavaScript
/**
* xdesign v1.0.6
* (c) 2023 xdesign
* @license MIT
*/
/* unplugin-vue-components disabled */var props = {
href: {
type: String,
"default": "",
required: true
},
target: {
type: String,
"default": "_self",
validator: function validator(val) {
return ["_self", "_blank", "_parent", "_top"].includes(val);
}
},
title: {
type: [String, Function],
"default": ""
}
};
export { props as default };
//# sourceMappingURL=anchor-item-props.js.map