hgh_admin/resources/js/pages/pages/typography.vue
2024-05-29 22:34:28 +05:00

17 lines
349 B
Vue

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