You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
771 B
36 lines
771 B
2 years ago
|
<template>
|
||
|
<div class="menu-child">
|
||
|
<template v-for="item in this.menuList">
|
||
|
<el-submenu :key="item.id" :index="item.id" v-if="item.children && item.children.length">
|
||
|
<template slot="title">
|
||
|
<span slot="title">{{item.columnName}}</span>
|
||
|
</template>
|
||
|
<menuTree :menuList="item.children"></menuTree>
|
||
|
</el-submenu>
|
||
|
<el-menu-item :key="item.id" :index="item.id" v-else>
|
||
|
<span slot="title">{{item.columnName}}</span>
|
||
|
</el-menu-item>
|
||
|
</template>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'menuTree',
|
||
|
props: {
|
||
|
menuList: {
|
||
|
type: Array,
|
||
|
default: []
|
||
|
}
|
||
|
},
|
||
|
data () {
|
||
|
return {}
|
||
|
},
|
||
|
mounted () {},
|
||
|
methods: {}
|
||
|
}
|
||
|
</script>
|
||
|
<style lang="scss" scoped>
|
||
|
|
||
|
</style>
|