Blame view
src/components/widgets/statistic/MiniStatistic.vue
761 Bytes
ade01719f
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
<template> <v-card> <v-card-text class="pa-0"> <v-container class="pa-0"> <div class="layout row ma-0"> <div class="sm6 xs6 flex"> <div class="layout column ma-0 justify-center align-center"> <v-icon size="56px" :color="color">{{icon}}</v-icon> </div> </div> <div class="sm6 xs6 flex text-sm-center py-3 white--text" :class="color"> <div class="headline">{{ title }}</div> <span class="caption">{{ subTitle }}</span> </div> </div> </v-container> </v-card-text> </v-card> </template> <script> export default { props: { icon: String, title: String, subTitle: String, color: String } }; </script> |