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.
28 lines
559 B
28 lines
559 B
<script setup lang="ts"> |
|
import useProject from '~/composables/useProject' |
|
import useTabs from '~/composables/useTabs' |
|
|
|
const { tables } = useProject() |
|
const { addTab } = useTabs() |
|
</script> |
|
|
|
<template> |
|
<div> |
|
<v-list> |
|
<v-list-item |
|
v-for="table in tables" |
|
:key="table.id" |
|
class="p-2 text-sm pointer" |
|
@click="addTab({ type: 'table', title: table.title, id: table.id })" |
|
> |
|
{{ table.title }} |
|
</v-list-item> |
|
</v-list> |
|
</div> |
|
</template> |
|
|
|
<style scoped> |
|
.pointer { |
|
cursor: pointer; |
|
} |
|
</style>
|
|
|