add some views and routes

This commit is contained in:
j3d1 2019-12-05 23:27:24 +01:00
parent c6c98d6aa0
commit 31c7272893
6 changed files with 50 additions and 13 deletions

13
src/views/Boxes.vue Normal file
View file

@ -0,0 +1,13 @@
<template>
<p>boxes</p>
</template>
<script>
export default {
name: 'Boxes',
};
</script>
<style scoped>
</style>

13
src/views/Error.vue Normal file
View file

@ -0,0 +1,13 @@
<template>
<p>Error</p>
</template>
<script>
export default {
name: 'Boxes',
};
</script>
<style scoped>
</style>

View file

@ -36,9 +36,6 @@ import { mapState } from 'vuex';
export default {
name: 'Items',
components: { Table, Cards },
created() {
console.log(this.$route.params.event);
},
computed: mapState(['loadedItems', 'layout']),
};
</script>