diff --git a/src/components/Description.vue b/src/components/Description.vue
new file mode 100644
index 0000000..ca1d0eb
--- /dev/null
+++ b/src/components/Description.vue
@@ -0,0 +1,414 @@
+
+
+
+
+
+
+
+
+
+
+
![]()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Compartir
+
+
+
+
+
+
+
+
+
+
Titulo:
+
{{ titulo }}
+
Autor:
+
{{ autor }}
+
Paginas:
+
{{ paginas }}
+
ISBN:
+
{{ isbn }}
+
Año de Impresión:
+
{{ edicion }}
+
+
Versión:
+
{{ version }}
+
Descripción:
+
{{ desc }}
+
Precio:
+
${{ precio }}
+
+
Cantidad:
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
![libro]()
+
+
+ {{ libro.title }}
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/components/titulo.vue b/src/components/titulo.vue
new file mode 100644
index 0000000..0e0f047
--- /dev/null
+++ b/src/components/titulo.vue
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/config/config.js b/src/config/config.js
new file mode 100644
index 0000000..3fb94d9
--- /dev/null
+++ b/src/config/config.js
@@ -0,0 +1,11 @@
+const config = {
+ //ngrok
+ //api: "https://f8d86328e778.ngrok.io"
+
+ //Local
+ //api: "http://localhost:3000"
+
+ //Pruebas
+ api: "https://venus.acatlan.unam.mx/portal"
+ };
+ module.exports = config;
\ No newline at end of file
diff --git a/src/routes.js b/src/routes.js
index 158b1c9..dbc3878 100644
--- a/src/routes.js
+++ b/src/routes.js
@@ -2,12 +2,10 @@ import Vue from 'vue'
import VueRouter from 'vue-router'
import Home from './view/Home.vue'
-<<<<<<< HEAD
import PersonalData from './view/PersonalData.vue'
-=======
import Cart from './view/Cart.vue'
->>>>>>> origin
+import Descrip from './view/Descrip.vue'
const routes = [
{
path: '/',
@@ -20,15 +18,19 @@ const routes = [
name: 'home'
},
{
-<<<<<<< HEAD
path: '/datosPersonales',
component: PersonalData,
name: 'personalData'
-=======
+ },
+ {
path: '/cart',
component: Cart,
name: 'cart'
->>>>>>> origin
+ },
+ {
+ path: '/descripcion',
+ component: Descrip,
+ name: 'descripcion'
}
]
diff --git a/src/view/Descrip.vue b/src/view/Descrip.vue
new file mode 100644
index 0000000..c359d01
--- /dev/null
+++ b/src/view/Descrip.vue
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file