目录代码整合

This commit is contained in:
aixianling
2022-05-10 20:02:37 +08:00
parent 71049f7f65
commit 036ee91533
324 changed files with 4 additions and 8321 deletions

View File

@@ -0,0 +1,40 @@
<template>
<div class="AppThematicConfig">
<List
slot="content"
:instance="instance"
:dict="dict"
:permissions="permissions">
</List>
</div>
</template>
<script>
import List from './components/List.vue'
export default {
name: 'AppThematicConfig',
label: '专题配置',
components: {
List
},
props: {
instance: Function,
dict: Object,
permissions: Function
},
data () {
return {
}
}
}
</script>
<style lang="scss" scoped>
.AppThematicConfig {
height: 100%;
}
</style>