mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
899 B
50 lines
899 B
<script lang="ts" setup> |
|
let debug = $ref(false) |
|
|
|
let clickCount = $ref(0) |
|
|
|
const onClick = () => { |
|
clickCount = clickCount + 1 |
|
debug = clickCount >= 4 |
|
} |
|
</script> |
|
|
|
<template> |
|
<div class="flex gap-2 justify-start" @click="onClick"> |
|
<slot name="start" /> |
|
|
|
<LazySmartsheetSidebarToolbarToggleDrawer /> |
|
|
|
<span></span> |
|
|
|
<template v-if="debug"> |
|
<LazySmartsheetSidebarToolbarExportCache /> |
|
|
|
<div class="dot" /> |
|
|
|
<LazySmartsheetSidebarToolbarDeleteCache /> |
|
|
|
<div class="dot" /> |
|
|
|
<LazySmartsheetSidebarToolbarDebugMeta /> |
|
|
|
<div class="dot" /> |
|
|
|
<LazySmartsheetSidebarToolbarBetaFeatureToggle /> |
|
|
|
<div class="dot" /> |
|
</template> |
|
|
|
<slot name="end" /> |
|
</div> |
|
</template> |
|
|
|
<style scoped> |
|
:deep(.nc-toolbar-btn) { |
|
@apply border-0 !text-xs font-semibold px-2; |
|
} |
|
|
|
.dot { |
|
@apply w-[3px] h-[3px] bg-gray-300 rounded-full; |
|
} |
|
</style>
|
|
|