blob: 5f810eda6e21f95a83942c3dc11f8a9c57c2204b (
plain)
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
|
<template>
<div style="max-width: 900px">
<h1>Punktacja</h1>
<ranking-list v-if="scores" :scores="scores" />
<p v-else>Loading...</p>
</div>
</template>
<script>
import RankingList from '~/components/Ranking/RankingList'
const FAUNA_KEY = 'fnADeP_U0uACC4Hruw9JvjexNsvB-V-QjI3wr8yH'
const b64encodedSecret = Buffer.from(FAUNA_KEY + ':').toString('base64')
const FAUNA_REF = '250230903625744898'
export default {
components: {
RankingList
},
data() {
return {
scores: undefined
}
},
mounted() {
this.getScores()
},
methods: {
getScores() {
this.scores = [
{ troop: 'Toop 1', points: 1 },
{ troop: 'Troop 2', points: 2 }
]
}
}
}
</script>
|