App_ProjectPokedex/src/App.vue
Cledson do Nascimento Pereira 11b8d663a9 Initial commit
2025-04-24 17:18:16 -04:00

27 lines
504 B
Vue

<template>
<div>
<CompHeader />
<CompMain />
<CompFooter />
</div>
</template>
<script setup>
import CompHeader from './components/CompHeader.vue';
import CompFooter from './components/CompFooter.vue';
import CompMain from './components/CompMain.vue';
</script>
<style scoped>
div {
display: flex;
flex-direction: column;
justify-content: space-between;
max-width: 1200px;
width: 100%;
height: 100vh;
}
</style>