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

8 lines
181 B
JavaScript

import { useStore } from '@/stores/hooks';
export function useStatus(elementName) {
const { $calculation } = useStore();
return $calculation.$status.getStatus(elementName);
}