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

16 lines
515 B
Vue

<script setup lang="ts">
const color = 'success'
</script>
<template>
<div class="flex flex-col">
<XText as="page" text="Page" :color="color" />
<XText as="section" text="Section" :color="color" />
<XText as="heading" text="Heading" :color="color" />
<XText as="subheading" text="Subheading" :color="color" />
<XText as="paragraph" text="Paragraph" :color="color" />
<XText as="label" text="Label" :color="color" />
<XText as="hint" text="Hint" :color="color" />
</div>
</template>