LeaderBoard
Displays the top performing portfolios
Leaderboard
Rank | Username | ETHUSD | BTCUSD | XRPUSD | EOSUSD |
---|---|---|---|---|---|
1 | John Mitchel D. | 1.234% | 3.245% | 2.65% | -0.34743% |
2 | Liam | -1.234% | 3.245% | -2.65% | 0.34743% |
3 | Tony Starks | 10.234% | 30.245% | -15.65% | 34.743% |
Usage
//
<script>
import { LeaderBoard } from '@magnito2/crypttops-library';
export default {
}
</script>
<template>
<div>
<LeaderBoard
:pairs="pairs"
:data="data"
>
</div>
</template>
Source Code
<script>
export default {
name: 'LeaderBoard',
props: {
pairs: Array,
data: Array,
},
}
</script>
Props
data
: An array of Dictionaries containing information to be rendered in the following format
// Format of data array
[
{
name: 'John Mitchel D.',
pairs: [1.234, 3.245, 2.650, -0.34743]
},
{
name: 'Liam',
pairs: [-1.234, 3.245, -2.650, 0.34743]
},
{
name: 'Tony Starks',
pairs: [10.234, 30.245, -15.650, 34.743]
},
]
pairs
: The names of crypto pairs to be displayed
// Format of pairs array
['ETHUSD','BTCUSD', 'XRPUSD', 'EOSUSD']