Skip to content

Commit 648b3c6

Browse files
committed
Add LastUpdated to the home page
1 parent 6c209c5 commit 648b3c6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pages/index.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<template>
22
<div class="bg-gray">
33
<Hero />
4+
<LastUpdated />
45
<LazyHydrate when-visible>
56
<Stats />
67
</LazyHydrate>
@@ -13,12 +14,14 @@
1314
<script>
1415
import LazyHydrate from 'vue-lazy-hydration'
1516
import Hero from '../components/HomePageHero.vue'
17+
import LastUpdated from '~/components/LastUpdated.vue'
1618
export default {
1719
components: {
1820
Hero,
1921
Stats: () => import('../components/Stats.vue'),
2022
TopDevelopers: () => import('../components/TopDevelopers.vue'),
2123
LazyHydrate,
24+
LastUpdated,
2225
},
2326
mounted() {
2427
this.$store.commit('setPeriod', 'last_30_days')

0 commit comments

Comments
 (0)