36 lines
687 B
Vue
36 lines
687 B
Vue
<template>
|
|
<div class="AppPropertyAdministration">
|
|
<AppPropertyAdministration
|
|
slot="content"
|
|
:instance="instance"
|
|
:dict="dict"
|
|
:permissions="permissions">
|
|
</AppPropertyAdministration>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import AppPropertyAdministration from './components/AppPropertyAdministration.vue'
|
|
export default {
|
|
name: "AppPropertyAdministration",
|
|
label: "产权管理",
|
|
components: {
|
|
AppPropertyAdministration,
|
|
},
|
|
props: {
|
|
instance: Function,
|
|
dict: Object,
|
|
permissions: Function
|
|
},
|
|
data() {
|
|
return {}
|
|
},
|
|
methods: {},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.AppPropertyAdministration {
|
|
height: 100%;
|
|
}
|
|
</style> |