mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-20 12:26:01 +00:00
14 lines
343 B
Svelte
14 lines
343 B
Svelte
<script>
|
|
import { currentDropDownMenu } from '../src/stores';
|
|
import DropDownMenu from './DropDownMenu.svelte';
|
|
</script>
|
|
|
|
{#if $currentDropDownMenu}
|
|
<DropDownMenu
|
|
left={$currentDropDownMenu.left}
|
|
top={$currentDropDownMenu.top}
|
|
items={$currentDropDownMenu.items}
|
|
on:close={() => ($currentDropDownMenu = null)}
|
|
/>
|
|
{/if}
|