mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
18 lines
237 B
Vue
18 lines
237 B
Vue
<template>
|
|
<div>
|
|
<h1> Hello </h1>
|
|
<portal-target name="modal" />
|
|
<report-modal />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import ReportModal from './ReportModal.vue'
|
|
|
|
export default {
|
|
components: {
|
|
ReportModal
|
|
}
|
|
}
|
|
</script>
|