| 1234567891011121314151617181920212223242526272829303132333435 |
- <!--
- Switch year bar : Barre qui s'affiche lorsque l'utilisateur possède un compte multi user
- -->
- <template>
- <UiSystemBar color="ot_info" v-if="show">
- <template #bar.text>
- <v-icon small>fas fa-info-circle</v-icon>
- <span v-html="$t('multi_account_alert', { fullname })"></span>
- <v-icon class="ml-1" small>fa fa-users</v-icon>
- {{$t('multi_account_alert_next')}}
- </template>
- </UiSystemBar>
- </template>
- <script lang="ts">
- import { defineComponent, useContext} from '@nuxtjs/composition-api'
- import {accessState} from "~/types/interfaces";
- export default defineComponent({
- setup () {
- const {store} = useContext()
- const profileAccess:accessState = store.state.profile.access
- return {
- show: profileAccess.hasFamilyMenu,
- fullname: `${profileAccess.givenName} ${profileAccess.name}`
- }
- }
- })
- </script>
- <style scoped>
- </style>
|