feat: Add CSAT reports (#2608)

This commit is contained in:
Pranav Raj S 2021-07-14 10:20:06 +05:30 committed by GitHub
parent b7806fc210
commit cb44eb2964
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
34 changed files with 1120 additions and 57 deletions

View file

@ -1,12 +1,21 @@
<template>
<div class="small-2 report-card" :class="{ 'active': selected }" v-on:click="onClick(index)">
<h3 class="heading">{{heading}}</h3>
<h4 class="metric">{{point}}</h4>
<p class="desc">{{desc}}</p>
<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>
</div>
</template>
<script>
export default {
props: {
heading: String,