Created
July 26, 2018 07:22
-
-
Save pizzavomito/696581b21a2e1ddbc80bd33b6382cd34 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<v-layout row wrap> | |
<v-flex xs1 d-flex class="ml-4 mr-4 text-xs-center"> | |
<v-chip> | |
<h3 class="display-2">{{ text }}</h3> | |
</v-chip> | |
</v-flex> | |
<v-flex d-flex xs10 class="ml-4"> | |
<v-layout row wrap> | |
<v-flex d-flex xs10 class="text-xs-left"> | |
<v-flex > | |
<v-chip v-for="item in itemsCountWithQuota" :key=item.code_solution outline color="info" >{{item.code_solution}} : <strong :style="`color:${item.color}`">{{item.count}} / {{item.quota}}</strong></v-chip> | |
</v-flex> | |
</v-flex> | |
<v-flex d-flex xs12 class="text-xs-left"> | |
<v-flex> | |
<v-chip dark small outline color="info" v-for="item in itemsCountUnitaryDemand" :key=item.code_solution >{{item.code_solution}} : <strong >{{item.count}}</strong></v-chip> | |
</v-flex> | |
</v-flex> | |
</v-layout> | |
</v-flex> | |
</v-layout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment