-
Notifications
You must be signed in to change notification settings - Fork 3.3k
/
Copy pathindex.html
30 lines (26 loc) · 978 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
<!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/[email protected]/dist/vue.global.js"></script>
</head>
<body>
<div id="app">
<div class="nav-bar"></div>
<div class="cart">Cart({{ cart }})</div>
<product-display :premium="premium" :details="['50% cotton', '30% wool', '20% polyester']"></product-display>
<product-display :premium="premium" :details="['20% cotton', '50% wool', '30% polyester']"></product-display>
<product-display :premium="premium" :details="['0% cotton', '50% wool', '50% polyester']"></product-display>
</div>
<script src="./main.js"></script>
<script src="./components/ProductDisplay.js"></script>
<!-- Mount App -->
<script>
const mountedApp = app.mount('#app')
</script>
</body>
</html>