You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
822 B
39 lines
822 B
<template>
|
|
<el-dialog
|
|
:visible="showDialog"
|
|
:title="$t('AbpTenantManagement.Permission:ManageFeatures')"
|
|
width="800px"
|
|
:show-close="false"
|
|
@closed="onFormClosed"
|
|
>
|
|
<feature-management
|
|
ref="featureManagement"
|
|
provider-name="T"
|
|
:provider-key="tenantId"
|
|
@closed="onFormClosed"
|
|
/>
|
|
</el-dialog>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { Component, Prop, Vue } from 'vue-property-decorator'
|
|
import FeatureManagement from '../../components/FeatureManagement.vue'
|
|
|
|
@Component({
|
|
name: 'TenantFeatureEditForm',
|
|
components: {
|
|
FeatureManagement
|
|
}
|
|
})
|
|
export default class extends Vue {
|
|
@Prop({ default: '' })
|
|
private tenantId!: string
|
|
|
|
@Prop({ default: false })
|
|
private showDialog!: boolean
|
|
|
|
private onFormClosed() {
|
|
this.$emit('closed')
|
|
}
|
|
}
|
|
</script>
|
|
|