2023-02-06 12:19:39 +03:00

8 lines
184 B
JavaScript

import { useStore } from '@/stores/hooks';
export function useOptions(elementName) {
const { $calculation } = useStore();
return $calculation.$options.getOptions(elementName);
}