mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 04:56:00 +00:00
17 lines
461 B
Svelte
17 lines
461 B
Svelte
<script>
|
|
import _ from 'lodash';
|
|
import { currentDropDownMenu } from '../stores';
|
|
import DropDownMenu from './DropDownMenu.svelte';
|
|
</script>
|
|
|
|
{#if $currentDropDownMenu}
|
|
<DropDownMenu
|
|
left={$currentDropDownMenu.left}
|
|
top={$currentDropDownMenu.top}
|
|
bottom={$currentDropDownMenu.bottom}
|
|
items={$currentDropDownMenu.items}
|
|
targetElement={$currentDropDownMenu.targetElement}
|
|
on:close={() => ($currentDropDownMenu = null)}
|
|
/>
|
|
{/if}
|