Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pizzavomito/696581b21a2e1ddbc80bd33b6382cd34 to your computer and use it in GitHub Desktop.
Save pizzavomito/696581b21a2e1ddbc80bd33b6382cd34 to your computer and use it in GitHub Desktop.
<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}} : &nbsp;<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}} : &nbsp;<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