add some views and routes
This commit is contained in:
parent
c6c98d6aa0
commit
31c7272893
6 changed files with 50 additions and 13 deletions
13
src/views/Boxes.vue
Normal file
13
src/views/Boxes.vue
Normal 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
13
src/views/Error.vue
Normal file
|
@ -0,0 +1,13 @@
|
|||
<template>
|
||||
<p>Error</p>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'Boxes',
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue