-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (33 loc) · 974 Bytes
/
index.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css"/>
<title>Vue JS Data Binding e Components</title>
</head>
<body>
<div class="container" id="vue">
<div class="row justify-content-md-center">
<div class="col col-md-8">
<br />
<div class="card">
<div class="card-header">Endereco</div>
<div class="card-body">
<form-endereco></form-endereco>
</div>
</div>
</div>
</div>
</div>
<!--jQuery-->
<script src="https://code.jquery.com/jquery-3.2.1.min.js" ></script>
<!--input Mask-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.mask/1.14.11/jquery.mask.js"></script>
<!--Vue.js-->
<script src="https://unpkg.com/vue"></script>
<!--form-endereco-component-->
<script src="components/form-endereco/index.js"></script>
<!--App.js-->
<script src="app.js"></script>
</body>
</html>