-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslots.html
46 lines (36 loc) · 1.05 KB
/
slots.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximun-scale=1, minimun-scale=1">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Slots</title>
</head>
<body>
<main id="app">
<mi-encabezado>
<h4 slot="sub">Subtítulo</h4>
<p slot="parrafo">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Blanditiis porro quam quisquam veritatis accusantium qui, cumque commodi sequi? Illum, ratione.</p>
</mi-encabezado>
</main>
<template id="miTemplate">
<div>
<slot name="sub"></slot>
<h1>Soy el Título del artículo</h1>
<slot name="parrafo"></slot>
</div>
</template>
<script src="vueJS/vue.min.js"></script>
<script>
Vue.component('mi-encabezado',{
template:'#miTemplate'
})
const app = new Vue({
el:'#app',
data:{
}
})
</script>
</body>
</html>