summaryrefslogblamecommitdiffstats
path: root/webapp/src/components/NoPermissionError.vue
blob: 031ab783dcb41008b156d2ec753493c42a3e74d3 (plain) (tree)

































                                                                   
<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>