mirror of
https://github.com/EvolutionAPI/evolution-manager.git
synced 2025-07-21 19:47:22 -06:00
17 lines
237 B
Vue
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>
|