mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-20 05:26:00 +00:00
15 lines
437 B
Svelte
15 lines
437 B
Svelte
<script lang="ts">
|
|
import PerspectiveView from '../perspectives/PerspectiveView.svelte';
|
|
import usePerspectiveConfig from '../utility/usePerspectiveConfig';
|
|
|
|
export let tabid;
|
|
export let conid;
|
|
export let database;
|
|
export let schemaName;
|
|
export let pureName;
|
|
|
|
const config = usePerspectiveConfig(tabid);
|
|
</script>
|
|
|
|
<PerspectiveView {conid} {database} {schemaName} {pureName} config={$config} setConfig={config.update} />
|