forked from mirrors/homebox
75c633dcb5
* dummy commit * cleanup workflows * setup and run eslint * add linter to CI * use eslint for formatting * reorder rules * drop editor config
14 lines
234 B
Vue
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-4">
|
|
<slot />
|
|
</component>
|
|
</template>
|