summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/NoPermissionError.vue
blob: 031ab783dcb41008b156d2ec753493c42a3e74d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<i18n>
{
  "en": {
    "noPermission": "You don't have permission for this."
  },
  "de": {
    "noPermission": "Sie haben keine Berechtigung hierfür."
  }
}
</i18n>

<template>
  <div>
    {{ $t('noPermission') }}
  </div>
</template>

<script>

export default {
  name: 'NoPermissionError',
  data () {
    return {
    }
  },
  methods: {
  }
}
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>

</style>