mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-28 13:06:13 +00:00
29 lines
604 B
Vue
29 lines
604 B
Vue
<template>
|
|
<div class="alert alert-light">
|
|
{{ $t('my_workflows.description') }}
|
|
</div>
|
|
<my-workflows-table :workflows="workflows" />
|
|
|
|
<div class="alert alert-light">
|
|
{{ $t('my_workflows.description_cc') }}
|
|
</div>
|
|
<my-workflows-table :workflows="workflowsCc" />
|
|
</template>
|
|
|
|
<script>
|
|
import { mapState } from "vuex";
|
|
import MyWorkflowsTable from './MyWorkflowsTable.vue';
|
|
|
|
export default {
|
|
name: "MyWorkflows",
|
|
components: {
|
|
MyWorkflowsTable
|
|
},
|
|
computed: {
|
|
...mapState([
|
|
'workflows',
|
|
'workflowsCc',
|
|
]),
|
|
},
|
|
}
|
|
</script> |