import { useStore } from '@/stores/hooks'; export function useValidation(elementName) { const { $calculation } = useStore(); const hasErrors = $calculation.$validation?.[elementName]?.hasErrors; if (hasErrors) { return { help: 'Некорректные данные', isValid: false, }; } return { isValid: true, }; }