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