homebox/frontend/components/Base/Container.vue
Hayden 6a8a25e3f8
feat: new dashboard implementation (#168)
* wip: charts.js experimental work

* update lock file

* wip: frontend redesign

* wip: more UI fixes for consistency across themes

* cleanup

* improve UI log

* style updates

* fix lint errors
2022-12-29 16:19:15 -09:00

14 lines
234 B
Vue

<script lang="ts" setup>
defineProps({
cmp: {
type: String,
default: "div",
},
});
</script>
<template>
<component :is="cmp" class="container max-w-6xl mx-auto px-3">
<slot />
</component>
</template>