mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-30 14:16:57 +00:00
20 lines
638 B
Vue
20 lines
638 B
Vue
<script lang="ts" setup>
|
|
import { Panel, PanelPosition } from '@vue-flow/additional-components'
|
|
</script>
|
|
|
|
<template>
|
|
<Panel class="text-xs bg-white border-1 rounded border-gray-200 z-50 nc-erd-histogram" :position="PanelPosition.BottomRight">
|
|
<div class="flex flex-col divide-y-1">
|
|
<div class="flex items-center gap-1 p-2">
|
|
<MdiTableLarge class="text-primary" />
|
|
<div>{{ $t('objects.table') }}</div>
|
|
</div>
|
|
|
|
<div class="flex items-center gap-1 p-2">
|
|
<MdiEyeCircleOutline class="text-primary" />
|
|
<div>{{ $t('objects.sqlVIew') }}</div>
|
|
</div>
|
|
</div>
|
|
</Panel>
|
|
</template>
|