Skip to content

CoderMonkie/vue2-teleport

 
 

Repository files navigation

vue2-teleport-polyfill

Vue2-teleport-polyfill forked and modified from Mechazawa/vue2-teleport

with support for passing an HTMLElement as the :to prop.


npm version

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.

Installation

npm install vue2-teleport-polyfill

Example

<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>

Local demo

npm run dev

License

This project is licensed under the CC0-1.0 License.

About

Teleport component for vue2 that works the same as vue3's teleport

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Vue 71.0%
  • JavaScript 29.0%