AlertBar.vue 713 B

123456789101112131415161718192021222324252627282930313233
  1. <!--
  2. Alert bars
  3. Contient les différentes barres d'alertes qui s'affichent dans certains cas
  4. -->
  5. <template>
  6. <main>
  7. <client-only>
  8. <LayoutAlertBarEnv />
  9. </client-only>
  10. <LayoutAlertBarSwitchUser />
  11. <client-only>
  12. <LayoutAlertBarCotisation v-if="organizationProfile.isCmf && can('manage', 'cotisation')" />
  13. </client-only>
  14. <LayoutAlertBarSwitchYear />
  15. <LayoutAlertBarSuperAdmin />
  16. </main>
  17. </template>
  18. <script setup lang="ts">
  19. import {useOrganizationProfileStore} from "~/stores/organizationProfile";
  20. import {useAbility} from "@casl/vue";
  21. const organizationProfile = useOrganizationProfileStore()
  22. const { can } = useAbility()
  23. </script>
  24. <style scoped>
  25. </style>