https://github.com/vuejs/rfcs/blob/master/active-rfcs/0025-teleport.md
https://wicg.github.io/portals/
<template> <teleport to="#modals"> <div class="backdrop" :class="inlineClass"> <div class="modal"> <h1>Hello from the Modal!</h1> <br> <button @click="close">Close</button> </div> </div> </teleport> </template>
<body> <div id="app"></div> <div id="modals"></div> </body>
By Thorsten Lünborg