evolution-manager/src/layouts/doc/Index.vue
2024-06-02 16:16:03 -03:00

17 lines
237 B
Vue

<template>
<v-app>
<doc-bar />
<doc-view />
<doc-footer />
</v-app>
</template>
<script setup>
import DocBar from "./AppBar.vue";
import DocView from "./View.vue";
//import DocFooter from "./AppFooter.vue";
</script>