refactor: use teleport for dialog instead of high z-index (#168)

This commit is contained in:
Guillaume Chau 2022-11-27 13:29:10 +01:00 committed by GitHub
parent 74e48ad99e
commit 7cfbbb8813
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 41 additions and 21 deletions

View file

@ -0,0 +1,6 @@
import VueSafeTeleport from 'vue-safe-teleport'
import { defineNuxtPlugin } from '#app'
export default defineNuxtPlugin((nuxtApp) => {
nuxtApp.vueApp.use(VueSafeTeleport)
})