xdesign-vue-next
Version:
XDesign Component for vue-next
32 lines (29 loc) • 558 B
JavaScript
/**
* xdesign v1.0.6
* (c) 2023 xdesign
* @license MIT
*/
/* unplugin-vue-components disabled */var stickyItemProps = {
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 { stickyItemProps as default };
//# sourceMappingURL=sticky-item-props.js.map