We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba57c4b commit 5517526Copy full SHA for 5517526
1 file changed
generator/templates/Default/src/Views/PageNotFound.vue
@@ -0,0 +1,28 @@
1
+<template>
2
+ <div class="text-xs-center">
3
+ <h1>
4
+ Pagina niet gevonden
5
+ </h1>
6
+ <div class="my-5 title">De pagina die u probeert te bereiken is niet gevonden</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: 'not-allowed',
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