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.
35 lines
748 B
35 lines
748 B
<template>
|
|
<el-dialog
|
|
:visible="showDialog"
|
|
:title="$t('AbpAuditLogging.SecurityLog')"
|
|
width="800px"
|
|
custom-class="modal-form"
|
|
:close-on-click-modal="true"
|
|
@close="onFormClosed"
|
|
>
|
|
<security-log-profile :security-log-id="securityLogId" />
|
|
</el-dialog>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { Component, Vue, Prop } from 'vue-property-decorator'
|
|
import SecurityLogProfile from './SecurityLogProfile.vue'
|
|
|
|
@Component({
|
|
name: 'SecurityLogDialog',
|
|
components: {
|
|
SecurityLogProfile
|
|
}
|
|
})
|
|
export default class extends Vue {
|
|
@Prop({ default: false })
|
|
private showDialog!: boolean
|
|
|
|
@Prop({ default: '' })
|
|
private securityLogId!: string
|
|
|
|
private onFormClosed() {
|
|
this.$emit('closed')
|
|
}
|
|
}
|
|
</script>
|
|
|