2020-08-04 13:35:59 -05:00
|
|
|
<template>
|
|
|
|
|
<div>
|
2020-08-06 00:37:08 -05:00
|
|
|
<Header />
|
|
|
|
|
<Nav />
|
2020-08-07 23:50:24 -05:00
|
|
|
<Carr />
|
|
|
|
|
<Title title="Recientes" />
|
|
|
|
|
<Cart />
|
2020-08-06 00:37:08 -05:00
|
|
|
<Footer />
|
2020-08-04 13:35:59 -05:00
|
|
|
</div>
|
|
|
|
|
</template>
|
2020-08-06 00:37:08 -05:00
|
|
|
|
|
|
|
|
<script>
|
2020-08-06 03:42:12 -05:00
|
|
|
import Header from "./../components/header.vue";
|
2020-08-07 23:50:24 -05:00
|
|
|
import Nav from "./../esteticas/nav.vue";
|
2020-08-10 20:10:29 -05:00
|
|
|
//import Nav from "./../components/navPrincipal.vue";
|
2020-08-06 03:42:12 -05:00
|
|
|
import Footer from "./../components/footer.vue";
|
2020-08-07 23:50:24 -05:00
|
|
|
import Carr from "../components/carrusel.vue";
|
|
|
|
|
import Cart from "../components/cartLibro.vue";
|
|
|
|
|
import Title from "../components/titulo.vue";
|
2020-08-06 00:37:08 -05:00
|
|
|
|
|
|
|
|
export default {
|
2020-08-10 20:10:29 -05:00
|
|
|
name: "home",
|
2020-08-06 00:37:08 -05:00
|
|
|
components: {
|
|
|
|
|
Header,
|
|
|
|
|
Nav,
|
2020-08-07 23:50:24 -05:00
|
|
|
Footer,
|
|
|
|
|
Carr,
|
|
|
|
|
Cart,
|
|
|
|
|
Title
|
2020-08-06 00:37:08 -05:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
</script>
|