mirror of
https://github.com/sysadminsmedia/homebox.git
synced 2025-12-23 14:13:53 +01:00
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-6xl px-3">
|
|
<slot />
|
|
</component>
|
|
</template>
|