-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
19 lines (19 loc) · 838 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" >
<title>Vue Example</title>
</head>
<body>
<h1>Page de test des composants</h1>
<div style="width:50%;">
<!-- J'appelle ici mes composants -->
<!-- <formater-pdf src="./pdf/Lettre-information-pole-Terre-Solide-n13-09-2016.pdf"></formater-pdf>-->
<formater-pdf-viewer fa="true" src="pdf/Lettre-information-pole-Terre-Solide-n13-09-2016.pdf"></formater-pdf-viewer>
<formater-pdf-viewer src="pdf/Lettre-information-pole-Terre-Solide-n13-09-2016.pdf" rotate="90"></formater-pdf-viewer>
</div>
<!-- le fichier build est créé lorsqu'on lance la commande build -->
<script src="dist/build.js"></script>
</body>
</html>