mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-03-04 04:30:04 +00:00
41 lines
905 B
Vue
41 lines
905 B
Vue
<template>
|
|
<div :class="topStyle">
|
|
<slot class="absolute top-0 left-0 w-full h-full"></slot>
|
|
|
|
<div class="absolute top-2 left-2 flex gap-2">
|
|
<slot name="top-left"></slot>
|
|
</div>
|
|
|
|
<div class="absolute top-2 right-2 flex gap-2">
|
|
<slot name="top-right"></slot>
|
|
</div>
|
|
|
|
<div class="absolute bottom-2 left-2 flex gap-2">
|
|
<slot name="bottom-left"></slot>
|
|
</div>
|
|
|
|
<div class="absolute bottom-2 right-2 flex gap-2 flex-wrap">
|
|
<slot name="bottom-right"></slot>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { computed } from 'vue'
|
|
|
|
const { ratio = 'square' } = defineProps<{
|
|
ratio?: 'square' | 'landscape'
|
|
}>()
|
|
|
|
const topStyle = computed(() => {
|
|
const baseClasses = 'relative p-0'
|
|
|
|
const ratioClasses = {
|
|
square: 'aspect-square',
|
|
landscape: 'aspect-48/27'
|
|
}
|
|
|
|
return `${baseClasses} ${ratioClasses[ratio]}`
|
|
})
|
|
</script>
|