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>
|
</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'
|
||||||
|
|
Loading…
Add table
Reference in a new issue