mirror of
https://gitee.com/chu1204505056/vue-admin-beautiful.git
synced 2025-04-06 03:58:00 +08:00
61 lines
1.2 KiB
Vue
61 lines
1.2 KiB
Vue
<template>
|
|
<el-submenu
|
|
ref="subMenu"
|
|
:index="handlePath(item.path)"
|
|
:popper-append-to-body="false"
|
|
>
|
|
<template slot="title">
|
|
<vab-icon
|
|
v-if="item.meta && item.meta.icon"
|
|
:icon="['fas', item.meta.icon]"
|
|
class="vab-fas-icon"
|
|
/>
|
|
<vab-remix-icon
|
|
v-if="item.meta && item.meta.remixIcon"
|
|
:icon-class="item.meta.remixIcon"
|
|
class="vab-remix-icon"
|
|
/>
|
|
<span>{{ item.meta.title }}</span>
|
|
</template>
|
|
<slot />
|
|
</el-submenu>
|
|
</template>
|
|
|
|
<script>
|
|
import { isExternal } from '@/utils/validate'
|
|
import path from 'path'
|
|
|
|
export default {
|
|
name: 'VabSubmenu',
|
|
props: {
|
|
routeChildren: {
|
|
type: Object,
|
|
default() {
|
|
return null
|
|
},
|
|
},
|
|
item: {
|
|
type: Object,
|
|
default() {
|
|
return null
|
|
},
|
|
},
|
|
fullPath: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
},
|
|
methods: {
|
|
handlePath(routePath) {
|
|
if (isExternal(routePath)) {
|
|
return routePath
|
|
}
|
|
if (isExternal(this.fullPath)) {
|
|
return this.fullPath
|
|
}
|
|
return path.resolve(this.fullPath, routePath)
|
|
},
|
|
},
|
|
}
|
|
</script>
|