Commit 66fc7ae4160e1ae9224d0210adcafe0538ad95d6
1 parent
59a3b893
update CellGroup
Showing
2 changed files
with
5 additions
and
6 deletions
Show diff stats
src/components/cell/cell-group.vue
| 1 | <template> | 1 | <template> |
| 2 | - | 2 | + <div class="ivu-cell-group"> |
| 3 | + <slot></slot> | ||
| 4 | + </div> | ||
| 3 | </template> | 5 | </template> |
| 4 | <script> | 6 | <script> |
| 5 | export default { | 7 | export default { |
| 6 | - props: { | ||
| 7 | - | ||
| 8 | - }, | ||
| 9 | - | 8 | + name: 'CellGroup' |
| 10 | } | 9 | } |
| 11 | </script> | 10 | </script> |
| 12 | \ No newline at end of file | 11 | \ No newline at end of file |
src/components/split/split.vue
| @@ -26,7 +26,7 @@ import { oneOf } from '../../utils/assist'; | @@ -26,7 +26,7 @@ import { oneOf } from '../../utils/assist'; | ||
| 26 | import { on, off } from '../../utils/dom'; | 26 | import { on, off } from '../../utils/dom'; |
| 27 | import Trigger from './trigger.vue' | 27 | import Trigger from './trigger.vue' |
| 28 | export default { | 28 | export default { |
| 29 | - name: 'SplitPane', | 29 | + name: 'Split', |
| 30 | components: { | 30 | components: { |
| 31 | Trigger | 31 | Trigger |
| 32 | }, | 32 | }, |