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
<template>
<div class="home">
<Navbar />
<div class="container">
<Hero />
<div class="row mt-4">
<div class="col">
<h2>Best <strong>Foods</strong></h2>
</div>
<div class="col">
<router-link to="/foods" class="btn btn-success float-right"
><b-icon-eye></b-icon-eye> Lihat Semua</router-link
>
</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 Hero from "@/components/Hero.vue";
import CardProduct from "@/components/CardProduct.vue";
import axios from "axios";
export default {
name: "Home",
components: {
Navbar,
Hero,
CardProduct,
},
data() {
return{
products: [],
};
},
methods: {
setProducts(data) {
this.products = data;
}
},
mounted() {
axios
.get("http://localhost:3000/best-products")
.then((response) => this.setProducts(response.data))
.catch((error) => console.log(error))
},
};
</script>