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.
18 lines
547 B
18 lines
547 B
2 years ago
|
<script setup lang="ts">
|
||
|
/** Sidebar visible */
|
||
|
const { isOpen, toggle } = useSidebar({ storageKey: 'nc-right-sidebar' })
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
2 years ago
|
<div :class="{ 'nc-active-btn': isOpen }">
|
||
2 years ago
|
<a-button size="small" class="nc-toggle-right-navbar" @click="toggle(!isOpen)">
|
||
2 years ago
|
<div class="flex items-center gap-1 text-xs" :class="{ 'text-gray-500': !isOpen }">
|
||
2 years ago
|
<AntDesignMenuUnfoldOutlined v-if="isOpen" />
|
||
|
<AntDesignMenuFoldOutlined v-else />
|
||
|
|
||
2 years ago
|
{{ $t('objects.views') }}
|
||
2 years ago
|
</div>
|
||
|
</a-button>
|
||
|
</div>
|
||
2 years ago
|
</template>
|