mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-10-01 02:49:42 +00:00
display table with notifications datas, prepare others tabs to render datas
This commit is contained in:
@@ -1,12 +1,34 @@
|
||||
<template>
|
||||
MyTasks
|
||||
<h3>{{ $t('my_tasks.title_warning') }}</h3>
|
||||
|
||||
<tab-table>
|
||||
<template v-slot:thead>
|
||||
</template>
|
||||
<template v-slot:tbody>
|
||||
<tr></tr>
|
||||
</template>
|
||||
</tab-table>
|
||||
|
||||
<h3>{{ $t('my_tasks.title_alert') }}</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: "MyTasks",
|
||||
components: {
|
||||
TabTable
|
||||
},
|
||||
computed: {
|
||||
...mapState([
|
||||
'tasks',
|
||||
|
Reference in New Issue
Block a user