Files
ebook/src/App.vue
koziavin 416c384f19
All checks were successful
Deploy Application / deploy (push) Successful in 5s
add hero-banner
2025-06-13 00:31:27 +04:00

11 lines
190 B
Vue

<template>
<UiLayout>
<RouterView />
</UiLayout>
</template>
<script setup lang="ts">
import UiLayout from './layout/UiLayout.vue'
import { RouterView } from 'vue-router'
</script>