mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-10 08:38:34 -05:00
21 lines
354 B
Vue
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> |