导航配置
This commit is contained in:
40
packages/3.0.0/AppNavConfig/AppNavConfig.vue
vendored
Normal file
40
packages/3.0.0/AppNavConfig/AppNavConfig.vue
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
<template>
|
||||
<div class="AppShowProduce">
|
||||
<List
|
||||
slot="content"
|
||||
:instance="instance"
|
||||
:dict="dict"
|
||||
:permissions="permissions">
|
||||
</List>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import List from './components/List.vue'
|
||||
|
||||
export default {
|
||||
name: 'AppNavConfig',
|
||||
label: '导航配置',
|
||||
|
||||
components: {
|
||||
List
|
||||
},
|
||||
|
||||
props: {
|
||||
instance: Function,
|
||||
dict: Object,
|
||||
permissions: Function
|
||||
},
|
||||
|
||||
data () {
|
||||
return {
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.AppShowProduce {
|
||||
height: 100%;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user