mirror of
https://github.com/sysadminsmedia/homebox.git
synced 2025-12-26 07:13:37 +01:00
* Update Container.vue to allow max 7 for xl * Update items.vue to allow 5 cols to large screen * Change to use pageSize to 30 Least common multiple is 30 for cols if 2, 3 or 5. --------- Co-authored-by: Matt Kilgore <tankerkiller125@users.noreply.github.com>
15 lines
240 B
Vue
15 lines
240 B
Vue
<script lang="ts" setup>
|
|
defineProps({
|
|
cmp: {
|
|
type: String,
|
|
default: "div",
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<component :is="cmp" class="container mx-auto mt-10 max-w-7xl px-3">
|
|
<slot />
|
|
</component>
|
|
</template>
|