42 lines
643 B
Vue
42 lines
643 B
Vue
<template>
|
|
<div id="app">
|
|
|
|
<Header />
|
|
<router-view></router-view>
|
|
<Footer />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import Header from './esteticas/Header.vue';
|
|
//import login from './login.vue';
|
|
import Footer from './esteticas/Footer.vue';
|
|
|
|
|
|
export default {
|
|
name: 'app',
|
|
components: {
|
|
Header,
|
|
Footer
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
#app {
|
|
font-family: 'Avenir', Helvetica, Arial, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
text-align: center;
|
|
color: #2c3e50;
|
|
padding: 0;
|
|
margin: 0;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
</style>
|