summaryrefslogtreecommitdiff
path: root/src/views/Unauthorized/Unauthorized.vue
blob: ee34f26cd29e91e5e6d1e3c1322bd431bd1fabc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<template>
  <b-container fluid="xl">
    <page-title :description="$t('pageUnauthorized.description')" />
  </b-container>
</template>
<script>
import PageTitle from '../../components/Global/PageTitle';
export default {
  name: 'Unauthorized',
  components: { PageTitle }
};
</script>