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