feat(fe sources): added blocks table

This commit is contained in:
Marco Cavalli 2025-03-19 12:14:38 +01:00
parent e62558eba0
commit 36fd80202b

View file

@ -1,7 +1,7 @@
<script setup lang="ts">
import {ref} from "vue";
import Archive from "@/components/content/Archive.vue";
import TableDraggable from "@/components/content/partials/TableDraggable.vue";
import Blocks from "@/components/content/Blocks.vue";
const tab = ref(null)
const tabs = [
@ -36,6 +36,12 @@ const tabs = [
:is-draggable="true"
:hideColumns="['mtime', 'actions']"
/>
<Blocks
v-if="tab.id === 'blocks'"
:show-select="false"
:is-draggable="true"
:hideColumns="['mtime', 'utime', 'actions']"
/>
</v-tabs-window-item>
</v-tabs-window>
</template>