Files
demo/src/views/TypographyPage.vue
T
2026-02-10 20:14:20 -05:00

17 lines
357 B
Vue

<script setup lang="ts">
import TypographyHeadlines from '@/components/typography/TypographyHeadlines.vue'
import TypographyTexts from '@/components/typography/TypographyTexts.vue'
</script>
<template>
<VRow>
<VCol cols="12">
<TypographyHeadlines />
</VCol>
<VCol cols="12">
<TypographyTexts />
</VCol>
</VRow>
</template>