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> </template>
<script> <script>
import { findComponentUpward, findComponentsUpward } from '../../utils/assist'; import { findComponentUpward, findComponentsUpward } from '../../utils/assist';
import mixin from './mixin';
const prefixCls = 'ivu-menu'; const prefixCls = 'ivu-menu';
export default { export default {
name: 'MenuGroup', name: 'MenuGroup',
mixins: [ mixin ],
props: { props: {
title: { title: {
type: String, type: String,
@ -22,12 +24,6 @@
}; };
}, },
computed: { computed: {
parentSubmenuNum () {
return findComponentsUpward(this, 'Submenu').length;
},
hasParentSubmenu () {
return findComponentUpward(this, 'Submenu');
},
groupStyle () { groupStyle () {
return this.hasParentSubmenu ? { return this.hasParentSubmenu ? {
paddingLeft: 43 + (this.parentSubmenuNum - 1) * 28 + 'px' paddingLeft: 43 + (this.parentSubmenuNum - 1) * 28 + 'px'