mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-19 22:34:15 +00:00
Amp-Thread-ID: https://ampcode.com/threads/T-019bc42f-b9b7-71de-9d8f-6584610ab21e Co-authored-by: Amp <amp@ampcode.com>
13 lines
229 B
Vue
13 lines
229 B
Vue
<template>
|
|
<div class="flex flex-col gap-1 px-4 py-2">
|
|
<span class="text-xs text-muted-foreground">{{ label }}</span>
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
defineProps<{
|
|
label: string
|
|
}>()
|
|
</script>
|