tdesign-vue
Version:
32 lines (29 loc) • 509 B
JavaScript
/**
* tdesign v1.14.1
* (c) 2025 tdesign
* @license MIT
*/
var baseProps = {
icon: {
type: Function
},
label: {
type: [String, Function]
},
popup: {
type: [String, Function]
},
popupProps: {
type: Object
},
trigger: {
type: String,
"default": "hover",
validator: function validator(val) {
if (!val) return true;
return ["hover", "click"].includes(val);
}
}
};
export { baseProps as default };
//# sourceMappingURL=sticky-item-props.js.map