-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (66 loc) · 2.98 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
<!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-cloak>
<div class="header">
<h1>Vue.js Poster Store</h1>
<form @submit.prevent="searchSubmit" class="searchbar">
<input type="text" placeholder="Search for poster" v-model="newSearch">
<input type="Submit" value="Search" class="btn">
</form>
</div>
<div class="main">
<div class="products">
<div v-if="loading">Loading...</div>
<div class="search-results" v-else-if="lastSearch">Showing {{products.length }} out of {{ results.length }} results for the search item <em>{{ lastSearch }}</em> </div>
<div class="product" v-for="product in products">
<div>
<div class="product-image"><img :src="product.link" /></div>
</div>
<div>
<h4 class="product-title">{{ product.title}}</h4>
<p>Price: <strong>{{ price | currency }}</strong></p>
<button class="btn add-to-cart" @click="addToCart(product)">Add to cart</button>
</div>
</div>
<div id="product-list-bottom"> {{ moreItems }} </div>
</div>
<div class="cart">
<h2>Shopping Cart</h2>
<transition-group name="fade" tag="ul">
<li class="cart-item" v-for="product in cart" :key="product.id">
<div class="item-title">{{ product.title}}</div>
<span class="item-qty">{{ product.price | currency}} x {{ product.qty }}</span>
<button class="btn" @click="dec(product)">-</button>
<button class="btn" @click="inc(product)">+</button>
</li>
</transition-group>
<transition name="fade">
<div v-if="cart.length">
<div>Total: {{ total | currency }}</div>
</div>
</transition>
<div v-if="!cart.length" class="empty-cart">Cart is empty</div>
</div>
</div>
</div>
<!-- Scripts -->
<script src="reload/reload.js"></script>
<script type="text/javascript" src="node_modules/vue/dist/vue.js"></script>
<script type="text/javascript" src="node_modules/vue-resource/dist/vue-resource.js"></script>
<script type="text/javascript" src="node_modules/scrollmonitor/scrollMonitor.js"></script>
<script type="text/javascript" src="public/script.js"></script>
</body>
</html>