Template
1
0
mirror of https://github.com/un-pany/v3-admin-vite.git synced 2025-04-20 19:09:21 +08:00

feat: 左侧导航菜单 title 过长自动省略

This commit is contained in:
pany 2024-11-21 11:28:37 +08:00
parent b8033dc892
commit 3155c086ca

View File

@ -60,7 +60,7 @@ function resolvePath(routePath: string) {
<SvgIcon v-if="theOnlyOneChild.meta.svgIcon" :name="theOnlyOneChild.meta.svgIcon" />
<component v-else-if="theOnlyOneChild.meta.elIcon" :is="theOnlyOneChild.meta.elIcon" class="el-icon" />
<template v-if="theOnlyOneChild.meta.title" #title>
{{ theOnlyOneChild.meta.title }}
<span class="title">{{ theOnlyOneChild.meta.title }}</span>
</template>
</el-menu-item>
</SidebarItemLink>
@ -69,7 +69,7 @@ function resolvePath(routePath: string) {
<template #title>
<SvgIcon v-if="props.item.meta?.svgIcon" :name="props.item.meta.svgIcon" />
<component v-else-if="props.item.meta?.elIcon" :is="props.item.meta.elIcon" class="el-icon" />
<span v-if="props.item.meta?.title">{{ props.item.meta.title }}</span>
<span v-if="props.item.meta?.title" class="title">{{ props.item.meta.title }}</span>
</template>
<template v-if="props.item.children">
<SidebarItem
@ -83,6 +83,8 @@ function resolvePath(routePath: string) {
</template>
<style lang="scss" scoped>
@import "@/styles/mixins.scss";
.svg-icon {
min-width: 1em;
margin-right: 12px;
@ -94,4 +96,8 @@ function resolvePath(routePath: string) {
margin-right: 12px !important;
font-size: 18px;
}
.title {
@extend %ellipsis;
}
</style>