Skip to content

Commit fa60874

Browse files
committed
Complete up bar with ministatistics
1 parent 5346fb6 commit fa60874

File tree

1 file changed

+26
-1
lines changed

1 file changed

+26
-1
lines changed

src/components/Home.vue

+26-1
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,38 @@
11
<template>
22
<v-container grid-list-md fluid>
33
<v-layout row wrap>
4-
<v-flex lg3 sm6 xs12>
4+
<v-flex lg3 sm6 xs12 class="mb-4">
55
<mini-statistic
66
icon="fa fa-users"
77
title="Customers"
88
:sub-title="clienteleCount"
99
color="indigo">
1010
</mini-statistic>
1111
</v-flex>
12+
<v-flex lg3 sm6 xs12>
13+
<mini-statistic
14+
icon="fa fa-bus"
15+
title="Buses"
16+
:sub-title="clienteleCount"
17+
color="green">
18+
</mini-statistic>
19+
</v-flex>
20+
<v-flex lg3 sm6 xs12>
21+
<mini-statistic
22+
icon="fa fa-money"
23+
title="Revenue"
24+
:sub-title="revenueCount"
25+
color="grey">
26+
</mini-statistic>
27+
</v-flex>
28+
<v-flex lg3 sm6 xs12>
29+
<mini-statistic
30+
icon="fa fa-bar-chart"
31+
title="Payments"
32+
:sub-title="revenueCount"
33+
color="red darken-3">
34+
</mini-statistic>
35+
</v-flex>
1236
</v-layout>
1337
<v-layout row wrap>
1438
<v-flex xs12 sm4>
@@ -183,6 +207,7 @@
183207
data: function() {
184208
return {
185209
mortgageCost:'5000k',
210+
revenueCount:'150k',
186211
clienteleCount:'',
187212
chartOptions: {
188213
chart: {

0 commit comments

Comments
 (0)