mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-20 14:30:41 +00:00
16 lines
362 B
Vue
16 lines
362 B
Vue
<template>
|
|
<BaseThumbnail>
|
|
<div class="w-full h-full flex items-center justify-center p-4">
|
|
<audio controls class="w-full relative" :src="src" @click.stop />
|
|
</div>
|
|
</BaseThumbnail>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import BaseThumbnail from '@/components/templates/thumbnails/BaseThumbnail.vue'
|
|
|
|
defineProps<{
|
|
src: string
|
|
}>()
|
|
</script>
|