-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
19 lines (19 loc) · 802 Bytes
/
index.html
File metadata and controls
19 lines (19 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Vue.js</title>
</head>
<body>
<h1>{{ titulo }}</h1>
Nueva Actividad: <input type="text" v-model="nuevaActividad" placeholder="Introduce Actividad">
<input type="submit" value="Agregar" @click="guardarActividad(nuevaActividad)">
<ul v-for="actividad in actividades | orderBy 'nombre' 1">
<li>{{actividad.nombre}}<input type="submit" value="Eliminar" @click="eliminarActividad(actividad)"></li>
</ul>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/vue/1.0.26/vue.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>