mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-20 20:35:59 +00:00
15 lines
365 B
Svelte
15 lines
365 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}
|
|
items={$currentDropDownMenu.items}
|
|
on:close={() => ($currentDropDownMenu = null)}
|
|
/>
|
|
{/if}
|