-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprueba.html
56 lines (45 loc) · 1.65 KB
/
prueba.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
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="http://192.168.1.100:3000/public/resources/libraries/vue.js"></script>
<script src="./resources/components/bloque.js"></script>
<script src="http://192.168.1.100:3000/public/atlasConocimiento/components/enlace.js"></script>
<script src="http://192.168.1.100:3000/public/atlasConocimiento/components/recuadro.js"></script>
<link rel="stylesheet" href="http://192.168.1.100:3000/public/atlasConocimiento/estilos/estilosGenerales.css">
<link rel="stylesheet" href="http://192.168.1.100:3000/public/atlasConocimiento/components/recuadroEstilo.css">
<link rel="stylesheet" href="http://192.168.1.100:3000/public/atlasConocimiento/components/bloqueEstilo.css">
<link rel="stylesheet" href="http://192.168.1.100:3000/public/atlasConocimiento/components/enlaceEstilo.css">
<title>Nombre</title>
</head>
<body>
<div id="doc">
<bloque-component textocabecera="Respuestas de conmutación" tipo="spoiler">
</bloque-component>
<enlace-component texto="Video de explicación" direccion="https://youtube.com"></enlace-component>
</div>
</body>
</html>
<script>
const doc=new Vue({
el:"#doc",
components:{
recuadroComponent,
bloqueComponent,
enlaceComponent
},
data(){
return {
}
}
})
</script>
<style>
#plano{
width: 200px;
height: 200px;
background-color: red;
}
</style>