-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (39 loc) · 1.07 KB
/
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
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Vue Mastery</title>
<!-- Import Styles -->
<link rel="stylesheet" href="./assets/styles.css" />
<!-- Import Vue.js -->
<script src="https://unpkg.com/vue@3.0.11/dist/vue.global.js"></script>
</head>
<body>
<div id="app">
<div class="nav-bar"></div>
<div class="cart">
<p>Cart({{ cart.length }})</p>
</div>
<product-display
:premium="premium"
@add-to-cart="updateCart"
></product-display>
</div>
<!-- Import App -->
<script src="./main.js"></script>
<!-- <div class="product-description">
<article>
<h3>Thin and Ligth .Redesigned!</h3>
<p>The new Nothing © laptop</p>
</article>
</div> -->
<!-- Import Components -->
<script src="./components/ProductDisplay.js"></script>
<script src="./components/ReviewForm.js"></script>
<script src="./components/ReviewList.js"></script>
<!-- Mount App -->
<script>
app.mount("#app");
</script>
</body>
</html>