-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (33 loc) · 1.13 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Search App</title>
<link rel="icon" href="assets/images/favicon.png">
<link rel="stylesheet" href="assets/style.css">
<script src="lib/vue.global.js"></script>
</head>
<body>
<div id="app">
<nav class="nav-bar margin-bottom-80px fl-center txt_center"><h1>Vue - Search</h1></nav>
<div class="container margin-bottom-80px">
<product-section></product-section>
</div>
<footer class="fl-center"><p>App was created by <strong>Tung Nguyen</strong></p></footer>
</div>
<!--Import App-->
<script src="assets/script.js"></script>
<!--Import Component-->
<script src="components/Product.js"></script>
<script src="components/ProductForm.js"></script>
<script src="components/ProductList.js"></script>
<script src="components/ProductChoose.js"></script>
<script>
<!--Mount App-->
const mountedApp = app.mount('#app');
</script>
</body>
</html>