restructure urls again
This commit is contained in:
parent
31c7272893
commit
0f07f8b517
4 changed files with 25 additions and 13 deletions
|
@ -1,10 +1,24 @@
|
|||
<template>
|
||||
<p>boxes</p>
|
||||
<div class="container-fluid px-xl-5 mt-3">
|
||||
<div class="row">
|
||||
<div class="col-xl-8 offset-xl-2">
|
||||
<Table
|
||||
:columns="['iid', 'item_uid', 'bezeichnung', 'container']"
|
||||
:items="[]"
|
||||
:keyName="'item_uid'"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { mapState } from 'vuex';
|
||||
import Table from '@/components/Table';
|
||||
export default {
|
||||
name: 'Boxes',
|
||||
components: {Table},
|
||||
computed: mapState(['loadedBoxes', 'layout']),
|
||||
};
|
||||
</script>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue