-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·44 lines (39 loc) · 1.14 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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Vue.js Medellin - Meetup 1</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<main>
<h1 v-if="conectado">Estas conectado</h1>
<h2 v-if="edad < 18">
No puedes entrar :(
</h2>
<h2 v-else-if="edad > 200">
Eres inmortal!!! :o
</h2>
<h2 v-else>
Puedes entrar :)
</h2>
<template v-if="conectado">
<h3>Bienvenido a Vue Medellin</h3>
<ul>
<li>
<a href="" @click="action">Salir</a>
<a v-bind:href="direccion" target="blank">Esto es un enlace</a>
</li>
</ul>
</template>
<h4 v-else>No estás conectado :(</h4>
<pre>
{{ $data }}
</pre>
</main>
<script src="https://unpkg.com/[email protected]/dist/vue.js"></script>
<script src="js/main.js"></script>
</body>
</html>