forked from vuejsdevelopers/vuejs-poster-shop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (83 loc) · 3.56 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="referrer" content="never" />
<title>Vue.js Poster Shop</title>
<link rel="icon" href="public/favicon.ico" type="image/x-icon">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Luckiest+Guy" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lato|Montserrat" rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="public/style.css">
</head>
<body>
<div id="app" v-on:scroll="renderMore" v-cloak>
<div class="header">
<h1>Vue.js Poster Store</h1>
<form action="post" class="searchbar" v-on:submit.prevent="find">
<input type="text" v-bind:placeholder="placeholder" v-model="newSearch">
<input type="submit" value="Search" class="btn">
</form>
</div>
<div class="main">
<div class="products">
<div v-if="notLoaded">Loading...</div>
<div class="search-results" v-if="found">Found {{ results.length }} results for search in {{ lastSearch }}</div>
<div class="product" v-for="(item, index) in items">
<div>
<a v-bind:href="item.link" target="_blank">
<div class="product-image">
<img v-bind:src="item.link" v-bind:alt="item.title">
</div>
</a>
</div>
<div>
<h4 class="product-title">{{ item.title }}</h4>
<button v-on:click="addItem(index)" class="add-to-cart btn">Add to Cart</button>
<p><strong>Price: {{item.price | currency}}</strong></p>
<p>No. of this item in the cart: {{ item.quantity }}</p>
</div>
</div>
<div id="product-list-bottom">
<div v-if="noMoreItems">
No more items.
</div>
</div>
</div>
<div class="cart">
<h2>Shopping Cart</h2>
<div>
<div>
<ul>
<transition-group name="fade" tag="li">
<li class="cart-item" v-for="item in cart" v-bind:key="item.id">
<div class="cart-item">{{ item.title }} </div>
<span class="item-qty">{{ item.price | currency }} x {{item.quantity}}</span>
<button class="btn" v-on:click="inc(item)">+</button>
<button class="btn" v-on:click="dec(item)">-</button>
</li>
</transition-group>
</ul>
<transition name="fade">
<div v-if="cart.length">
<div>Total: {{ total | currency }}</div>
</div>
</transition>
<div v-if="cart.length === 0" class="empty-cart">
No items in the cart.
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Scripts -->
<script src="reload/reload.js"></script>
<script src="/node_modules/vue/dist/vue.js"></script>
<script src="/node_modules/vue-resource/dist/vue-resource.js"></script>
<script src="/node_modules/scrollmonitor/scrollMonitor.js"></script>
<script type="text/javascript" src="public/script.js"></script>
</body>
</html>