mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 14:16:01 +00:00
table data grid
This commit is contained in:
15
packages/web/src/tabs/TableDataTab.svelte
Normal file
15
packages/web/src/tabs/TableDataTab.svelte
Normal file
@@ -0,0 +1,15 @@
|
||||
<script lang="ts">
|
||||
import App from '../App.svelte';
|
||||
import TableDataGrid from '../datagrid/TableDataGrid.svelte';
|
||||
import useGridConfig from '../utility/useGridConfig';
|
||||
|
||||
export let tabid;
|
||||
export let conid;
|
||||
export let database;
|
||||
export let schemaName;
|
||||
export let pureName;
|
||||
|
||||
const config = useGridConfig(tabid);
|
||||
</script>
|
||||
|
||||
<TableDataGrid {...$$props} {config} />
|
||||
Reference in New Issue
Block a user