This commit is contained in:
2018-11-20 19:00:16 +00:00
parent 26325f089f
commit 9ef2022b5b
10 changed files with 201 additions and 22 deletions

View File

@@ -1,27 +1,28 @@
<template>
<div>
<v-data-table
:headers="headers"
:items="desserts"
:pagination.sync="pagination"
:total-items="totalDesserts"
:loading="loading"
class="elevation-1"
>
<template slot="items" slot-scope="props">
<td>{{ props.item.name }}</td>
<td class="text-xs-right">{{ props.item.calories }}</td>
<td class="text-xs-right">{{ props.item.fat }}</td>
<td class="text-xs-right">{{ props.item.carbs }}</td>
<td class="text-xs-right">{{ props.item.protein }}</td>
<td class="text-xs-right">{{ props.item.iron }}</td>
</template>
</v-data-table>
</div>
<div>
<v-data-table
:headers="headers"
:items="desserts"
:pagination.sync="pagination"
:total-items="totalDesserts"
:loading="loading"
class="elevation-1"
>
<template slot="items" slot-scope="props">
<td>{{ props.item.name }}</td>
<td class="text-xs-right">{{ props.item.calories }}</td>
<td class="text-xs-right">{{ props.item.fat }}</td>
<td class="text-xs-right">{{ props.item.carbs }}</td>
<td class="text-xs-right">{{ props.item.protein }}</td>
<td class="text-xs-right">{{ props.item.iron }}</td>
</template>
</v-data-table>
</div>
</template>
<script>
//https://vuetifyjs.com/en/components/data-tables#example-server
export default {
data() {
return {

View File

@@ -0,0 +1,18 @@
<template>
<v-container>
<v-layout text-xs-center wrap="">
<v-flex mb-4>
<h1 class="display-2 font-weight-bold mb-3">TOP Part assembly</h1>
</v-flex>
</v-layout>
</v-container>
</template>
<script>
export default {
data: () => ({})
};
</script>
<style>
</style>

View File

@@ -0,0 +1,18 @@
<template>
<v-container>
<v-layout text-xs-center wrap="">
<v-flex mb-4>
<h1 class="display-2 font-weight-bold mb-3">TOP Parts</h1>
</v-flex>
</v-layout>
</v-container>
</template>
<script>
export default {
data: () => ({})
};
</script>
<style>
</style>

View File

@@ -0,0 +1,18 @@
<template>
<v-container>
<v-layout text-xs-center wrap="">
<v-flex mb-4>
<h1 class="display-2 font-weight-bold mb-3">TOP Purchase orders</h1>
</v-flex>
</v-layout>
</v-container>
</template>
<script>
export default {
data: () => ({})
};
</script>
<style>
</style>

View File

@@ -0,0 +1,18 @@
<template>
<v-container>
<v-layout text-xs-center wrap="">
<v-flex mb-4>
<h1 class="display-2 font-weight-bold mb-3">Top Warehouses</h1>
</v-flex>
</v-layout>
</v-container>
</template>
<script>
export default {
data: () => ({})
};
</script>
<style>
</style>

View File

@@ -0,0 +1,18 @@
<template>
<v-container>
<v-layout text-xs-center wrap="">
<v-flex mb-4>
<h1 class="display-2 font-weight-bold mb-3">TOP WIDGET</h1>
</v-flex>
</v-layout>
</v-container>
</template>
<script>
export default {
data: () => ({})
};
</script>
<style>
</style>