add KitList component

This commit is contained in:
axolotle
2021-07-01 14:32:24 +02:00
parent 1387bbed69
commit 0d2d870381
4 changed files with 114 additions and 3 deletions
+24 -2
View File
@@ -1,12 +1,34 @@
<template>
<component-debug :component="this" />
<div class="kit">
<kit-list />
</div>
</template>
<script>
import { KitList } from '@/pages/kit'
export default {
name: 'Kit'
name: 'Kit',
components: {
KitList
},
data () {
return {
}
},
created () {
this.$store.dispatch('INIT_KIT')
}
}
</script>
<style lang="scss" scoped>
.kit {
height: 100%;
width: 100%;
}
</style>