Dominik Milacher 0dc24c4db7
Some checks failed
Build and deploy updated apps / Build & deploy (push) Failing after 50s
Extend ux layer and overhaul panoramablick-saalbach.at
2025-11-21 21:17:52 +01:00

22 lines
351 B
Vue

<script setup lang="ts">
const props = defineProps<{
class?: string
ux?: any
orientation: 'horizontal' | 'vertical'
}>()
const classes = useStyling(
'separator',
{
slots: {
base: 'self-stretch h-auto',
},
},
props
)
</script>
<template>
<USeparator :class="classes.base" :orientation="props.orientation" />
</template>