aboutsummaryrefslogtreecommitdiff
path: root/client/src/views/Home.vue
blob: 3e89885e7c14ea14489314c23134c7c87ed8cbe8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<template>
  <div class="row mt-5">
    <div class="col-lg-3 col-md-4 col-sm-6">
      <ProductCard/>
    </div>
  </div>
</template>

<script>
import ProductCard from '@/components/ProductCard';

export default {
  name: 'Home',
  components: {
    ProductCard
  }
}
</script>