mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-01-16 19:05:08 -05:00
17 lines
280 B
Vue
17 lines
280 B
Vue
<template>
|
|
<div class="flex flex-col gap-1">
|
|
<div>{{ label }}</div>
|
|
<div>
|
|
<slot></slot>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
const props = defineProps({
|
|
label: {
|
|
type: String,
|
|
default: null,
|
|
},
|
|
});
|
|
</script> |