tdesign-vue
Version:
44 lines (41 loc) • 686 B
JavaScript
/**
* tdesign v1.12.1
* (c) 2025 tdesign
* @license MIT
*/
var props = {
content: {
type: [String, Function]
},
"default": {
type: [String, Function]
},
disabled: Boolean,
href: {
type: String,
"default": ""
},
icon: {
type: Function
},
replace: Boolean,
router: {
type: Object
},
routerLink: Boolean,
target: {
type: String,
validator: function validator(val) {
return ["_blank", "_self", "_parent", "_top"].includes(val);
}
},
to: {
type: [String, Object]
},
value: {
type: [String, Number]
},
onClick: Function
};
export { props as default };
//# sourceMappingURL=menu-item-props.js.map