-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathej04.html
64 lines (62 loc) · 1.89 KB
/
ej04.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
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript"
src="https://cdn.jsdelivr.net/npm/vue"></script>
</head>
</html>
<body>
<main>
<table>
<thead>
<th>NOMBRE</th>
<th>APELLIDO</th>
</thead>
<tbody>
<tr v-for="(item ,idx) in users">
<td>{{item.nombre}}</td>
<td>{{item.apellido}}</td>
</tr>
</tbody>
</table>
<form @submit.prevent="createUser">
<input type="text" placeholder="nombre" v-model="objUser.nombre" />
<input type="text" placeholder="apellido" v-model="objUser.apellido" />
<input type="submit" value="GUARDAR"/>
</form>
{{ $data }}
</main>
</body>
<script type="text/javascript">
new Vue({
el:'main',
data:{
users:[
{'nombre':'Ernesto','apellido':'liberio'},
{'nombre':'Gerardo','apellido':'Vera'},
{'nombre':'Martha','apellido':'Vera'}
],
objUser:{'nombre':null,'apellido':null}
},
methods:{
createUser(){
this.users.unshift(this.objUser);
this.orderUser;
this.objUser={'nombre':null,'apellido':null}
}
},
computed:{
orderUser(){
return this.users.sort(function(a,b){
if(a.nombre >b.nombre){
return 1;
}
if(a.nombre < b.nombre){
return -1;
}
return 0;
});
}
}
});
</script>