43 lines
No EOL
1.2 KiB
Vue
43 lines
No EOL
1.2 KiB
Vue
<template>
|
|
<Table
|
|
:columns="['cid', 'name','itemCount']"
|
|
:items="loadedBoxes"
|
|
:keyName="'cid'"
|
|
>
|
|
<template v-slot:header_actions>
|
|
<button class="btn btn-success" @click.prevent="openAddBoxModal">
|
|
<font-awesome-icon icon="plus"/>
|
|
Create Box
|
|
</button>
|
|
</template>
|
|
<template v-slot:actions="{ item }">
|
|
<div class="btn-group">
|
|
<button class="btn btn-secondary" @click.stop="showBoxContent(item.name)">
|
|
<!--font-awesome-icon icon="archive"/--> content
|
|
</button>
|
|
<button class="btn btn-danger" @click.stop="" title="delete">
|
|
<font-awesome-icon icon="trash"/>
|
|
</button>
|
|
</div>
|
|
</template>
|
|
</Table>
|
|
</template>
|
|
|
|
<script>
|
|
import {mapActions, mapMutations, mapState} from 'vuex';
|
|
import Table from '@/components/Table';
|
|
|
|
export default {
|
|
name: 'Boxes',
|
|
components: {Table},
|
|
computed: mapState(['loadedBoxes', 'layout']),
|
|
methods: {
|
|
...mapActions(['showBoxContent']),
|
|
...mapMutations(['openAddBoxModal'])
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |