Skip to content

Commit eef5419

Browse files
committed
Created a Forbidde-page
1 parent ba57c4b commit eef5419

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<template>
2+
<div class="text-xs-center">
3+
<h1>
4+
Onjuiste autorisatie
5+
</h1>
6+
<div class="my-5 title">Je hebt niet voldoende rechten om deze actie uit te mogen voeren</div>
7+
<v-btn color="primary" @click="home">Terug naar de homepage</v-btn>
8+
</div>
9+
</template>
10+
11+
<script>
12+
13+
export default {
14+
name: 'page-forbidden',
15+
data() {
16+
return {};
17+
},
18+
methods: {
19+
home() {
20+
this.$router.push({name: 'home'});
21+
},
22+
},
23+
};
24+
</script>
25+
26+
<style scoped lang="scss">
27+
28+
</style>

0 commit comments

Comments
 (0)