Browse Source

Remove unnecessary container

pull/341/head
Hironsan 4 years ago
parent
commit
f21dae411d
1 changed files with 32 additions and 37 deletions
  1. 69
      frontend/pages/projects/_id/statistics/index.vue

69
frontend/pages/projects/_id/statistics/index.vue

@ -1,41 +1,36 @@
<template>
<v-container
v-if="stats"
fluid
>
<v-row>
<v-col
cols="12"
lg="4"
>
<v-card>
<doughnut-chart
:chart-data="progress"
/>
</v-card>
</v-col>
<v-col
cols="12"
lg="4"
>
<v-card>
<bar-chart
:chart-data="labelStats"
/>
</v-card>
</v-col>
<v-col
cols="12"
lg="4"
>
<v-card>
<bar-chart
:chart-data="userStats"
/>
</v-card>
</v-col>
</v-row>
</v-container>
<v-row v-if="stats">
<v-col
cols="12"
lg="4"
>
<v-card>
<doughnut-chart
:chart-data="progress"
/>
</v-card>
</v-col>
<v-col
cols="12"
lg="4"
>
<v-card>
<bar-chart
:chart-data="labelStats"
/>
</v-card>
</v-col>
<v-col
cols="12"
lg="4"
>
<v-card>
<bar-chart
:chart-data="userStats"
/>
</v-card>
</v-col>
</v-row>
</template>
<script>

Loading…
Cancel
Save