17 lines
357 B
Vue
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>
|