update menu-group
This commit is contained in:
parent
b4c3794697
commit
6b4e738352
1 changed files with 2 additions and 6 deletions
|
@ -6,10 +6,12 @@
|
|||
</template>
|
||||
<script>
|
||||
import { findComponentUpward, findComponentsUpward } from '../../utils/assist';
|
||||
import mixin from './mixin';
|
||||
const prefixCls = 'ivu-menu';
|
||||
|
||||
export default {
|
||||
name: 'MenuGroup',
|
||||
mixins: [ mixin ],
|
||||
props: {
|
||||
title: {
|
||||
type: String,
|
||||
|
@ -22,12 +24,6 @@
|
|||
};
|
||||
},
|
||||
computed: {
|
||||
parentSubmenuNum () {
|
||||
return findComponentsUpward(this, 'Submenu').length;
|
||||
},
|
||||
hasParentSubmenu () {
|
||||
return findComponentUpward(this, 'Submenu');
|
||||
},
|
||||
groupStyle () {
|
||||
return this.hasParentSubmenu ? {
|
||||
paddingLeft: 43 + (this.parentSubmenuNum - 1) * 28 + 'px'
|
||||
|
|
Loading…
Add table
Reference in a new issue