header con imagenesEjemplo

This commit is contained in:
eithan
2020-08-04 13:35:59 -05:00
parent d25d33c537
commit f986338672
10 changed files with 110 additions and 116 deletions
+14 -1
View File
@@ -1,12 +1,18 @@
<template>
<div id="app">
<Header />
<router-view></router-view>
</div>
</template>
<script>
import Header from "./esteticas/header.vue";
export default {
name: "App"
name: "App",
components: {
Header
}
};
</script>
@@ -18,5 +24,12 @@ export default {
text-align: center;
color: #2c3e50;
margin-top: 60px;
padding: 0;
margin: 0;
}
.row {
margin: 0 !important;
}
</style>