Merge pull request #1 from vishwasrao/patch-2

Update Customers.vue
This commit is contained in:
Joe Fleming
2017-05-30 14:17:37 -07:00
committed by GitHub

View File

@@ -31,12 +31,12 @@
<div class="columns is-multiline" v-if="mode === 'cards'"> <div class="columns is-multiline" v-if="mode === 'cards'">
<div class="column is-one-third" v-for="customer in customers"> <div class="column is-one-third" v-for="customer in customers">
<customer-card :customer="customer"> <customer-card :customer="customer"></customer-card>
</div> </div>
</div> </div>
<customer-table v-if="mode === 'table'"> <customer-table v-if="mode === 'table'">
<customer-row v-for="customer in customers" :customer="customer"> <customer-row v-for="customer in customers" :customer="customer"></customer-row>
</customer-table> </customer-table>
</div> </div>
@@ -97,4 +97,4 @@
header { header {
margin-bottom: 30px; margin-bottom: 30px;
} }
</style> </style>