-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (47 loc) · 1.84 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Curso Profesional Vue.js</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-xs-12">
<h1>Curso Profesional Vue.js</h1>
<div class="alert alert-info">
<ul>
<li>
<a href="/examples/1-interpolation.html">Interpolación</a>
</li>
<li>
<a href="/examples/2-directives.html">Directivas</a>
</li>
<li>
<a href="/examples/3-computed-properties.html">Computed Properties</a>
</li>
<li>
<a href="/examples/4-events.html">Manejo de Eventos</a>
</li>
<li>
<a href="/examples/5-forms.html">Forms</a>
</li>
<li>
<a href="/examples/6-components.html">Componentes</a>
</li>
<li>
<a href="/examples/7-components-and-events.html">Componentes y Eventos</a>
</li>
<li>
<a href="/examples/7-components-and-events.html">Filtros</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</body>
</html>