mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
25 lines
403 B
Vue
25 lines
403 B
Vue
<template>
|
|
<report-modal v-if="showReportModal" />
|
|
</template>
|
|
|
|
<script>
|
|
import ReportModal from '~/components/ReportModal'
|
|
|
|
export default {
|
|
name: 'Modal',
|
|
components: {
|
|
ReportModal
|
|
},
|
|
computed: {
|
|
showReportModal() {
|
|
return this.$store.getters['modal/open'] === 'report'
|
|
}
|
|
},
|
|
methods: {
|
|
close() {
|
|
this.$store.commit('modal/SET_OPEN', {})
|
|
}
|
|
}
|
|
}
|
|
</script>
|