tdesign-vue-next
Version:
TDesign Component for vue-next
59 lines (54 loc) • 1.02 kB
JavaScript
/**
* tdesign v1.17.7
* (c) 2025 tdesign
* @license MIT
*/
;
Object.defineProperty(exports, '__esModule', { value: true });
var props = {
expanded: {
type: Array,
"default": void 0
},
defaultExpanded: {
type: Array,
"default": []
},
expandType: {
type: String,
"default": "normal",
validator: function validator(val) {
if (!val) return true;
return ["normal", "popup"].includes(val);
}
},
logo: {
type: Function
},
operations: {
type: Function
},
theme: {
type: String,
"default": "light",
validator: function validator(val) {
if (!val) return true;
return ["light", "dark"].includes(val);
}
},
value: {
type: [String, Number],
"default": void 0
},
modelValue: {
type: [String, Number],
"default": void 0
},
defaultValue: {
type: [String, Number]
},
onChange: Function,
onExpand: Function
};
exports["default"] = props;
//# sourceMappingURL=head-menu-props.js.map