2019-08-14 09:48:44 +00:00
|
|
|
<template>
|
2021-07-14 04:50:06 +00:00
|
|
|
<div
|
|
|
|
class="small-2 report-card"
|
|
|
|
:class="{ active: selected }"
|
|
|
|
@click="onClick(index)"
|
|
|
|
>
|
|
|
|
<h3 class="heading">
|
|
|
|
{{ heading }}
|
|
|
|
</h3>
|
|
|
|
<h4 class="metric">
|
|
|
|
{{ point }}
|
|
|
|
</h4>
|
|
|
|
<p class="desc">
|
|
|
|
{{ desc }}
|
|
|
|
</p>
|
2019-08-14 09:48:44 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
props: {
|
2021-12-27 08:19:31 +00:00
|
|
|
heading: { type: String, default: '' },
|
|
|
|
point: { type: [Number, String], default: '' },
|
|
|
|
index: { type: Number, default: null },
|
|
|
|
desc: { type: String, default: '' },
|
2019-08-14 09:48:44 +00:00
|
|
|
selected: Boolean,
|
2021-12-27 08:19:31 +00:00
|
|
|
onClick: { type: Function, default: () => {} },
|
2019-08-14 09:48:44 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|