SourceTermAnalysisSystem_vue/node_modules/element-plus/es/utils/vue/refs.mjs

11 lines
179 B
JavaScript
Raw Normal View History

2026-05-15 10:22:44 +08:00
const composeRefs = (...refs) => {
return (el) => {
refs.forEach((ref) => {
ref.value = el;
});
};
};
export { composeRefs };
//# sourceMappingURL=refs.mjs.map