forked from yurimarcon/Curso-Vue3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (25 loc) · 822 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
<!DOCTYPE html>
<html lang="pt-bt">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Curso Vue 3</title>
<!-- STYLE -->
<link rel="stylesheet" href="./assets/styles.css">
<!-- VUE CDN -->
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
</head>
<body>
<div id="app">
<cart-display :cart="cart"></cart-display>
<product-display @add-to-cart="addToCart"></product-display>
</div>
<!-- IMPORT DO ARQUIVO PRINCIPAL DO VUE -->
<script src="./main.js"></script>
<!-- IMPORT DO COMPONENTE -->
<script src="./Components/Product.js"></script>
<script src="./Components/Cart.js"></script>
<!-- MONTA O APP -->
<script>app.mount('#app')</script>
</body>
</html>