-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path14-componentes-template.html
48 lines (40 loc) · 1.18 KB
/
14-componentes-template.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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Vue.js</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<main>
<h1>Mostrar usuarios:</h1>
<mis-usuarios :datos="datapadre" inline-template>
<div>
<ul>
<li v-for="u in datos">{{u.name}}</li>
<ul>
</div>
</mis-usuarios>
</main>
<!--<template id="plantilla-usuarios">
<div>
<ul>
<li v-for="u in datos">{{u.name}}</li>
<ul>
</div>
</template> -->
<!-- Con script :( -->
<!--<script type="text/template" id="plantilla-usuarios">
<div>
<ul>
<li v-for="u in datos">{{u.name}}</li>
<ul>
</div>
</script> -->
<script src="https://unpkg.com/[email protected]/dist/vue.js"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="14-main.js"></script>
</body>
</html>