-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
101 lines (83 loc) · 3.56 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Recetas</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container-recetas" id="appReceta">
<h1 class="container-recetas__title">Libro de Recetas</h1>
<!-- COLUMN LEFT -->
<div class="container-recetas__left">
<h3>Seleccione una receta</h3>
<hr>
<p>
<input class="container-recetas__left__search" type="text" placeholder="Buscar receta..."
v-model="search">
</p>
<ul>
<li v-for="receta in lista_recetas_filtrada" :key="receta.id">
<a class="container-recetas__left__list" href="#"
@click="SeleccionarReceta(receta)">{{receta.nombre}}</a>
</li>
</ul>
<button class="container-recetas__left__btn-add" @click="show_add_receta = !show_add_receta">
Agregar nueva receta
</button>
<div v-show="show_add_receta">
<p>
<input class="container-recetas__left__input" type="text" placeholder="Id..."
v-model="new_receta.id">
</p>
<p>
<input class="container-recetas__left__input" type="text" placeholder="Nombre..."
v-model="new_receta.nombre">
</p>
<h3><label for="">Descripción</label></h3>
<hr>
<textarea class="container-recetas__left__description" v-model="new_receta.descripción" cols="30"
rows="10"></textarea>
<p>
<input class="container-recetas__left__input" type="text" placeholder="Chef..."
v-model="new_receta.chef">
</p>
<p>
<input class="container-recetas__left__input" type=" text" placeholder="Agregar ingredientes..."
v-model="nuevo_ingrediente" @keyup.enter="AgregarIngrediente()">
</p>
<ul>
<li v-for="ingrediente in new_receta.ingredientes" :key="ingrediente.id">
{{ingrediente.nombre}}
</li>
</ul>
<p>
<button class="container-recetas__left__btn-save" @click="AgregarReceta()">Guardar</button>
</p>
</div>
</div>
<!-- COLUMN RIGHT -->
<div class="container-recetas__right" style="width: 50%; float: right;" v-if="receta_seleccionada">
<h3 class="container-recetas__right__title">{{receta_seleccionada.nombre}}</h3>
<div class="container-recetas__right__data-chef">
<h4>Chef:</h4>
<h4 class="container-recetas__right__data-chef__name">{{receta_seleccionada.chef}}</h4>
</div>
<h4>Ingredientes:</h4>
<hr>
<ul>
<li v-for="ingrediente in receta_seleccionada.ingredientes">{{ingrediente.nombre}}</li>
</ul>
<h4>Descripción:</h4>
<hr>
<p class="container-recetas__right__description">
{{receta_seleccionada.descripcion}}</p>
</div>
</div>
<!-- Import code vue -->
<script src="vue2.7.js"></script>
<script src="recetas.js"></script>
</body>
</html>