Files
dvcp_v2_webapp/packages/extra/AppModConfig/AppModConfig.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>