nav corregido

This commit is contained in:
2020-08-06 00:37:08 -05:00
parent 6f033f7a0a
commit 100e1f8ba8
3 changed files with 195 additions and 10 deletions
+1 -9
View File
@@ -1,21 +1,13 @@
<template>
<div id="app">
<Header />
<router-view></router-view>
<Footer />
</div>
</template>
<script>
import Header from "./esteticas/header.vue";
import Footer from "./esteticas/footer.vue";
export default {
name: "App",
components: {
Header,
Footer
}
name: "App"
};
</script>