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

8 lines
148 B
JavaScript

import { useStore } from '@/stores/hooks';
export function useRow(key) {
const { $tables } = useStore();
return $tables.insurance.row(key);
}