mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-10-05 04:49:44 +00:00
28 lines
713 B
Vue
28 lines
713 B
Vue
<template>
|
|
<div class="alert alert-light">
|
|
{{ trans(MY_WORKFLOWS_DESCRIPTION) }}
|
|
</div>
|
|
<my-workflows-table :workflows="workflows" />
|
|
|
|
<div class="alert alert-light">
|
|
{{ trans(MY_WORKFLOWS_DESCRIPTION_CC) }}
|
|
</div>
|
|
<my-workflows-table :workflows="workflowsCc" />
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed } from "vue";
|
|
import { useStore } from "vuex";
|
|
import MyWorkflowsTable from "./MyWorkflowsTable.vue";
|
|
import {
|
|
MY_WORKFLOWS_DESCRIPTION,
|
|
MY_WORKFLOWS_DESCRIPTION_CC,
|
|
trans,
|
|
} from "translator";
|
|
|
|
const store = useStore();
|
|
|
|
const workflows = computed(() => store.state.homepage.workflows);
|
|
const workflowsCc = computed(() => store.state.homepage.workflowsCc);
|
|
</script>
|