aboutsummaryrefslogtreecommitdiff
path: root/src/components/mobile_nav
diff options
context:
space:
mode:
authorTusooa Zhu <tusooa@kazv.moe>2022-04-06 14:54:58 -0400
committertusooa <tusooa@kazv.moe>2023-01-20 23:39:45 -0500
commitdc04c8cbd48dd8dcfc6b1937663e57983d38562a (patch)
tree1d45de83d709f6d7b679e5a2d55a3070afbc10f3 /src/components/mobile_nav
parent39e4746f615970001839309e06a0f13d9613b175 (diff)
Use vue3 teleport instead of portal
Diffstat (limited to 'src/components/mobile_nav')
-rw-r--r--src/components/mobile_nav/mobile_nav.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/mobile_nav/mobile_nav.vue b/src/components/mobile_nav/mobile_nav.vue
index 6b6b8f21..6d826622 100644
--- a/src/components/mobile_nav/mobile_nav.vue
+++ b/src/components/mobile_nav/mobile_nav.vue
@@ -88,7 +88,7 @@
ref="sideDrawer"
:logout="logout"
/>
- <portal to="modal">
+ <teleport to="#modal">
<confirm-modal
v-if="showingConfirmLogout"
:title="$t('login.logout_confirm_title')"
@@ -99,7 +99,7 @@
>
{{ $t('login.logout_confirm') }}
</confirm-modal>
- </portal>
+ </teleport>
</div>
</template>