mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-24 16:54:03 +00:00
Amp-Thread-ID: https://ampcode.com/threads/T-019bc49a-df5a-7708-8fc2-da5cb1c686d1 Co-authored-by: Amp <amp@ampcode.com>
13 lines
221 B
Vue
13 lines
221 B
Vue
<template>
|
|
<div class="flex flex-col gap-1 px-4 py-2 text-sm text-muted-foreground">
|
|
<span>{{ label }}</span>
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
defineProps<{
|
|
label: string
|
|
}>()
|
|
</script>
|