mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-20 22:39:39 +00:00
15 lines
236 B
Vue
15 lines
236 B
Vue
<template>
|
|
<p
|
|
class="m-0 line-clamp-2 text-sm text-base-foreground leading-tight break-all"
|
|
:title="fileName"
|
|
>
|
|
{{ fileName }}
|
|
</p>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
defineProps<{
|
|
fileName: string
|
|
}>()
|
|
</script>
|