feat: initial commit - Band Management application

This commit is contained in:
2026-01-06 03:11:46 +01:00
commit 34e12e00b3
24543 changed files with 3991790 additions and 0 deletions

View File

@@ -0,0 +1,127 @@
<script setup>
import {
basic,
cellSlot,
dense,
expandableRows,
externalPagination,
fixedHeader,
groupingRows,
kitchenSink,
rowEditingViaDialog,
rowSelection,
} from '@/views/demos/forms/tables/data-table/demoCodeDataTable'
</script>
<template>
<VRow>
<VCol cols="12">
<!-- 👉 Basic -->
<AppCardCode
title="Basic"
:code="basic"
no-padding
>
<DemoDataTableBasic />
</AppCardCode>
</VCol>
<VCol>
<!-- 👉 Dense -->
<AppCardCode
title="Dense"
:code="dense"
no-padding
>
<DemoDataTableDense />
</AppCardCode>
</VCol>
<!-- 👉 Table Cell Slot -->
<VCol cols="12">
<AppCardCode
title="Cell Slot"
:code="cellSlot"
no-padding
>
<DemoDataTableCellSlot />
</AppCardCode>
</VCol>
<!-- 👉 Table Row selection -->
<VCol cols="12">
<AppCardCode
title="Row Selection"
:code="rowSelection"
no-padding
>
<DemoDataTableRowSelection />
</AppCardCode>
</VCol>
<!-- 👉 Fixed Header -->
<VCol cols="12">
<AppCardCode
title="Fixed Header"
:code="fixedHeader"
no-padding
>
<DemoDataTableFixedHeader />
</AppCardCode>
</VCol>
<!-- 👉 Expandable rows -->
<VCol cols="12">
<AppCardCode
title="Expandable Rows"
:code="expandableRows"
no-padding
>
<DemoDataTableExpandableRows />
</AppCardCode>
</VCol>
<!-- 👉 Grouping Rows -->
<VCol cols="12">
<AppCardCode
title="Grouping Rows"
:code="groupingRows"
no-padding
>
<DemoDataTableGroupingRows />
</AppCardCode>
</VCol>
<!-- 👉 Row Editing via Dialog -->
<VCol cols="12">
<AppCardCode
title="Row Editing via Dialog"
:code="rowEditingViaDialog"
no-padding
>
<DemoDataTableRowEditingViaDialog />
</AppCardCode>
</VCol>
<!-- 👉 External Pagination -->
<VCol cols="12">
<AppCardCode
title="External Pagination"
:code="externalPagination"
no-padding
>
<DemoDataTableExternalPagination />
</AppCardCode>
</VCol>
<!-- 👉 Kitchen Sink -->
<VCol cols="12">
<AppCardCode
title="Kitchen Sink"
:code="kitchenSink"
no-padding
>
<DemoDataTableKitchenSink />
</AppCardCode>
</VCol>
</VRow>
</template>

View File

@@ -0,0 +1,75 @@
<script setup>
import {
basic,
density,
fixedHeader,
height,
theme,
} from '@/views/demos/forms/tables/simple-table/demoCodeSimpleTable'
</script>
<template>
<VRow>
<VCol cols="12">
<AppCardCode
title="Basic"
:code="basic"
no-padding
>
<DemoSimpleTableBasic />
</AppCardCode>
</VCol>
<VCol cols="12">
<AppCardCode
title="Theme"
:code="theme"
no-padding
>
<VCardText>
use <code>theme</code> prop to switch table to the dark theme.
</VCardText>
<DemoSimpleTableTheme />
</AppCardCode>
</VCol>
<VCol cols="12">
<AppCardCode
title="Density"
:code="density"
no-padding
>
<VCardText>
You can show a dense version of the table by using the <code>density</code> prop.
</VCardText>
<DemoSimpleTableDensity />
</AppCardCode>
</VCol>
<VCol cols="12">
<AppCardCode
title="Height"
:code="height"
no-padding
>
<VCardText>
You can set the height of the table by using the <code>height</code> prop.
</VCardText>
<DemoSimpleTableHeight />
</AppCardCode>
</VCol>
<VCol cols="12">
<AppCardCode
title="Fixed Header"
:code="fixedHeader"
no-padding
>
<VCardText>
You can fix the header of table by using the <code>fixed-header</code> prop.
</VCardText>
<DemoSimpleTableFixedHeader />
</AppCardCode>
</VCol>
</VRow>
</template>