33 lines
726 B
Vue
33 lines
726 B
Vue
<template>
|
|
<div class="props-config-edit">
|
|
<el-dialog
|
|
:title="$t('pages.userRegistrationOverviewCharts.dialog.title')"
|
|
:visible="true"
|
|
:before-close="handleClose"
|
|
:close-on-click-modal="false"
|
|
:modal-append-to-body="true"
|
|
:append-to-body="true"
|
|
width="80%"
|
|
>
|
|
<user-registration-overview-charts height="300px" />
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import UserRegistrationOverviewCharts from '@/components/data/UserRegistrationOverviewCharts'
|
|
export default {
|
|
components: { UserRegistrationOverviewCharts },
|
|
data() {
|
|
return {}
|
|
},
|
|
methods: {
|
|
handleClose() {
|
|
this.$emit('close')
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<style scoped lang="scss">
|
|
|
|
</style>
|