-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplantillaVersionLocal.html
46 lines (37 loc) · 1.39 KB
/
plantillaVersionLocal.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="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="http://192.168.1.100:3000/public/atlasConocimiento/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">
</div>
</body>
</html>
<script>
const doc=new Vue({
el:"#doc",
components:{
recuadroComponent,
bloqueComponent,
enlaceComponent
},
data(){
return {
}
}
})
</script>
<style>
</style>