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
<template>
<div>
<Navbar />
<div class="container">
<div class="row mt-4">
<div class="col">
<h2>Daftar <strong>Makanan</strong></h2>
</div>
</div>
<div class="row mt-3">
<div class="col">
<div class="input-group mb-3">
<input
v-model="search"
type="text"
class="form-control"
placeholder="Cari Makanan Kesukaan Anda"
aria-label="Cari"
aria-describedby="basic-addon1"
@keyup="searchFood"
/>
<span class="input-group-text" id="basic-addon1"><b-icon-search></b-icon-search></span>
</div>
</div>
</div>
<div class="row mb-4">
<div class="col-md-4 mt-4" v-for="product in products" :key="product.id">
<CardProduct :product="product" />
</div>
</div>
</div>
</div>
</template>
<script>
// @ is an alias to /src
import Navbar from "@/components/Navbar.vue";
import CardProduct from "@/components/CardProduct.vue";
import axios from "axios";
export default {
name: "Foods",
components: {
Navbar,
CardProduct,
},
data() {
return {
products: [],
search: '',
};
},
methods: {
setProducts(data) {
this.products = data;
},
searchFood(){
axios
.get("http://localhost:3000/products?q="+this.search)
.then((response) => this.setProducts(response.data))
.catch((error) => console.log(error));
}
},
mounted() {
axios
.get("http://localhost:3000/products")
.then((response) => this.setProducts(response.data))
.catch((error) => console.log(error));
},
};
</script>
<style></style>