Files
recipes/vue3/src/pages/HelpPage.vue
2025-07-31 17:28:36 +02:00

21 lines
354 B
Vue

<template>
<v-container height="70vh">
<v-row height="70vh" >
<v-col height="70vh">
<help-view height="70vh"></help-view>
</v-col>
</v-row>
</v-container>
</template>
<script setup lang="ts">
import HelpView from "@/components/display/HelpView.vue";
</script>
<style scoped>
</style>