We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 648b3c6 commit 9132cb6Copy full SHA for 9132cb6
pages/contributors/index.vue
@@ -1,6 +1,7 @@
1
<template>
2
<div class="page-container">
3
<Hero title="Contributors" />
4
+ <LastUpdated />
5
<div class="area-chart-section">
6
<div class="chart-header">
7
<div class="divider-black"></div>
@@ -30,13 +31,15 @@
30
31
</template>
32
33
<script>
34
+import LastUpdated from '~/components/LastUpdated.vue'
35
export default {
36
name: 'ContributorsPage',
37
components: {
38
Hero: () => import('~/components/Hero.vue'),
39
AreaChart: () => import('~/components/AreaChart.vue'),
40
BarChart: () => import('~/components/BarChart.vue'),
41
TopDevelopers: () => import('~/components/TopDevelopers.vue'),
42
+ LastUpdated,
43
},
44
data() {
45
return {
0 commit comments