add Cell component for init
This commit is contained in:
parent
a0141266d4
commit
59a3b893b7
10 changed files with 57 additions and 0 deletions
11
src/components/cell/cell-group.vue
Normal file
11
src/components/cell/cell-group.vue
Normal file
|
@ -0,0 +1,11 @@
|
|||
<template>
|
||||
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
props: {
|
||||
|
||||
},
|
||||
|
||||
}
|
||||
</script>
|
11
src/components/cell/cell.vue
Normal file
11
src/components/cell/cell.vue
Normal file
|
@ -0,0 +1,11 @@
|
|||
<template>
|
||||
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
props: {
|
||||
|
||||
},
|
||||
|
||||
}
|
||||
</script>
|
5
src/components/cell/index.js
Normal file
5
src/components/cell/index.js
Normal file
|
@ -0,0 +1,5 @@
|
|||
import Cell from './cell.vue';
|
||||
import CellGroup from './cell-group.vue';
|
||||
|
||||
Cell.Group = CellGroup;
|
||||
export default Cell;
|
Loading…
Add table
Add a link
Reference in a new issue