feat(fe sources): added blocks table
This commit is contained in:
parent
e62558eba0
commit
36fd80202b
1 changed files with 7 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue