Vue2-teleport-polyfill forked and modified from Mechazawa/vue2-teleport
with support for passing an HTMLElement as the :to prop.
This package is an alternative to vue3's teleport component. You can use the documentation provided by vue as a starting point to using this package.
npm install vue2-teleport-polyfill<template>
<div>
<button @click="modalOpen = true">
Open full screen modal! (With teleport!)
</button>
<Teleport to="body">
<div v-if="modalOpen" class="modal">
<div>
I'm a teleported modal!
(My parent is "body")
<button @click="modalOpen = false">
Close
</button>
</div>
</div>
</Teleport>
</div>
</template>
<script>
import Teleport from 'vue2-teleport-polyfill';
export default {
components: {
Teleport,
},
data() {
return {
modalOpen: false
}
}
}
</script>npm run devThis project is licensed under the CC0-1.0 License.