chore: render standard html tag in sidebar menu

This commit is contained in:
杜郡 2020-01-17 10:21:20 +08:00
parent 6850312e89
commit 17615c4f49
2 changed files with 24 additions and 12 deletions

View File

@ -3,6 +3,7 @@
<!-- eslint-disable vue/require-component-is -->
<component v-bind="linkProps(to)">
<slot />
<slot name="title" />
</component>
</template>

View File

@ -1,14 +1,16 @@
<template>
<div v-if="!item.hidden">
<template v-if="hasOneShowingChild(item.children,item) && (!onlyOneChild.children||onlyOneChild.noShowingChildren)&&!item.alwaysShow">
<app-link v-if="onlyOneChild.meta" :to="resolvePath(onlyOneChild.path)">
<el-menu-item :index="resolvePath(onlyOneChild.path)" :class="{'submenu-title-noDropdown':!isNest}">
<item :icon="onlyOneChild.meta.icon||(item.meta&&item.meta.icon)" :title="onlyOneChild.meta.title" />
</el-menu-item>
</app-link>
</template>
<el-submenu v-else ref="subMenu" :index="resolvePath(item.path)" popper-append-to-body>
<!-- render tag rightly -->
<component
:is="!appLinkShow?'el-submenu':'el-menu-item'"
v-if="!item.hidden"
:ref="!appLinkShow?'subMenu':''"
:index="resolvePath(item.path)"
popper-append-to-body
>
<app-link v-if="appLinkShow" :to="resolvePath(onlyOneChild.path)">
<item :icon="onlyOneChild.meta.icon||(item.meta&&item.meta.icon)" :title="onlyOneChild.meta.title" />
</app-link>
<template v-else>
<template slot="title">
<item v-if="item.meta" :icon="item.meta && item.meta.icon" :title="item.meta.title" />
</template>
@ -20,8 +22,8 @@
:base-path="resolvePath(child.path)"
class="nest-menu"
/>
</el-submenu>
</div>
</template>
</component>
</template>
<script>
@ -56,6 +58,15 @@ export default {
this.onlyOneChild = null
return {}
},
computed: {
appLinkShow() {
return (
this.hasOneShowingChild(this.item.children, this.item) &&
(!this.onlyOneChild.children || this.onlyOneChild.noShowingChildren) &&
!this.item.alwaysShow
)
}
},
methods: {
hasOneShowingChild(children = [], parent) {
const showingChildren = children.filter(item => {