Files
dsProject/dsBase/WebRoot/html/cdn/es/components/select-v2/src/useOption.mjs

18 lines
344 B
JavaScript
Raw Normal View History

2025-08-14 15:45:08 +08:00
function useOption(props, { emit }) {
return {
hoverItem: () => {
if (!props.disabled) {
emit("hover", props.index);
}
},
selectOptionClick: () => {
if (!props.disabled) {
emit("select", props.item, props.index);
}
}
};
}
export { useOption };
//# sourceMappingURL=useOption.mjs.map