add Cell component for init

This commit is contained in:
梁灏 2018-06-20 15:17:54 +08:00
parent a0141266d4
commit 59a3b893b7
10 changed files with 57 additions and 0 deletions

View file

@ -0,0 +1,2 @@
import CellGroup from '../cell/cell-group.vue';
export default CellGroup;

View file

@ -0,0 +1,11 @@
<template>
</template>
<script>
export default {
props: {
},
}
</script>

View file

@ -0,0 +1,11 @@
<template>
</template>
<script>
export default {
props: {
},
}
</script>

View file

@ -0,0 +1,5 @@
import Cell from './cell.vue';
import CellGroup from './cell-group.vue';
Cell.Group = CellGroup;
export default Cell;