mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
@Tirokk I think I could narrow down our problem to an additional call of Wrapper(). The fact that we have to call it at least twice is a strong indicator of non-atomic tests, which is bad.
20 lines
244 B
Vue
20 lines
244 B
Vue
<template>
|
|
<div>
|
|
<portal-target
|
|
id="portal"
|
|
name="modal"
|
|
/>
|
|
<report-modal />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import ReportModal from './ReportModal.vue'
|
|
|
|
export default {
|
|
components: {
|
|
ReportModal
|
|
}
|
|
}
|
|
</script>
|