ivue-material-plus
Version:
A high quality UI components Library with Vue.js
12 lines (11 loc) • 371 B
TypeScript
import type { WatcherPropsData } from './index';
declare function useCurrent(watcherData: WatcherPropsData): {
updateCurrentRowData: () => void;
updateCurrentRow: (_currentRow: any) => void;
setCurrentRowKey: (key: string) => void;
states: {
_currentRowKey: import("vue").Ref<string>;
currentRow: any;
};
};
export default useCurrent;