update menu-group

This commit is contained in:
zhigang.li 2018-01-22 12:16:58 +08:00
parent b4c3794697
commit 6b4e738352

View file

@ -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'