| 12345678910111213141516171819202122232425262728 |
- <!--
- Alert bars
- Contient les différentes barres d'alertes qui s'affichent dans certains cas
- -->
- <template>
- <main>
- <LayoutAlertBarEnv />
- <LayoutAlertBarSwitchUser />
- <client-only>
- <LayoutAlertBarCotisation v-if="organizationProfile.isCmf && ability.can('manage', 'cotisation')" />
- </client-only>
- <LayoutAlertBarSwitchYear />
- <LayoutAlertBarSuperAdmin />
- </main>
- </template>
- <script setup lang="ts">
- import {useOrganizationProfileStore} from "~/stores/organizationProfile";
- import {useAbility} from "@casl/vue";
- const organizationProfile = useOrganizationProfileStore()
- const ability = useAbility()
- </script>
|