Update Customers.vue

Added closing tags for customer-card and customer-row which were missing.
This commit is contained in:
Vishwasrao Salunkhe
2017-03-26 19:31:28 +05:30
committed by GitHub
parent 53ee1511b9
commit b5588433ba

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>