add KitList component
This commit is contained in:
+24
-2
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user