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.
39 lines
602 B
39 lines
602 B
2 years ago
|
<script lang="ts" setup>
|
||
|
import AddRow from './AddRow.vue'
|
||
|
import DeleteTable from './DeleteTable.vue'
|
||
|
import LockMenu from './LockMenu.vue'
|
||
|
import Reload from './Reload.vue'
|
||
|
</script>
|
||
|
|
||
2 years ago
|
<template>
|
||
|
<div class="flex gap-2">
|
||
2 years ago
|
<slot name="start" />
|
||
|
|
||
2 years ago
|
<LockMenu />
|
||
2 years ago
|
|
||
|
<div class="dot" />
|
||
|
|
||
2 years ago
|
<Reload />
|
||
2 years ago
|
|
||
|
<div class="dot" />
|
||
|
|
||
2 years ago
|
<AddRow />
|
||
2 years ago
|
|
||
|
<div class="dot" />
|
||
|
|
||
2 years ago
|
<DeleteTable />
|
||
2 years ago
|
|
||
2 years ago
|
<slot name="end" />
|
||
2 years ago
|
</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>
|