Added Features to Mobile Styling

This commit is contained in:
2025-06-03 16:35:30 +02:00
parent dd89a70789
commit 8d4ff3c88e
6 changed files with 209 additions and 5 deletions

View File

@@ -2,6 +2,7 @@
import {useTempStore} from "~/stores/temp.js";
import FloatingActionButton from "~/components/mobile/FloatingActionButton.vue";
import EntityTable from "~/components/EntityTable.vue";
import EntityListMobile from "~/components/EntityListMobile.vue";
const props = defineProps({
type: {
@@ -181,7 +182,14 @@ const filteredRows = computed(() => {
</USelectMenu>
</template>
</UDashboardToolbar>
<EntityListMobile
v-if="platform === 'mobile'"
:type="props.type"
:columns="columns"
:rows="filteredRows"
/>
<EntityTable
v-else
:type="props.type"
:columns="columns"
:rows="filteredRows"