27 lines
367 B
Vue
27 lines
367 B
Vue
|
|
<template>
|
||
|
|
<section class="AppModConfig">
|
||
|
|
</section>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
|
||
|
|
export default {
|
||
|
|
name: "AppModConfig",
|
||
|
|
label: "应用定制配置",
|
||
|
|
props: {
|
||
|
|
instance: Function,
|
||
|
|
dict: Object,
|
||
|
|
permissions: Function
|
||
|
|
},
|
||
|
|
created() {
|
||
|
|
this.dict.load('yesOrNo')
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
.AppModConfig {
|
||
|
|
height: 100%;
|
||
|
|
}
|
||
|
|
</style>
|