display table with notifications datas, prepare others tabs to render datas

This commit is contained in:
2022-01-25 20:08:39 +01:00
parent 2144b247b3
commit fc1ed8b71e
8 changed files with 175 additions and 18 deletions

View File

@@ -1,12 +1,23 @@
<template>
MyWorks
<h3>{{ $t('my_works.title') }}</h3>
<tab-table>
<template v-slot:thead>
</template>
<template v-slot:tbody>
<tr></tr>
</template>
</tab-table>
</template>
<script>
import { mapState, mapGetters } from "vuex";
import TabTable from "./TabTable";
export default {
name: "MyWorks",
components: {
TabTable
},
computed: {
...mapState([
'works',