“Vue Teleport” Kode Jawaban

Teleport di Vue

<teleport to="body">
        <error v-if="inValid">
        <template #header>
            <h2 class="text-danger">the Error</h2>
        </template>
        <template #content>
            <p>
                please enter the valid data to input !!!
            </p>   
            <button class="btn btn-success" @click="close">click to close</button>
        </template>
    </error>
    </teleport>
Mohamad

Teleport di Vue


npm i portal-vue --save

Faithful Fly

Vue Teleport

  <!DOCTYPE html>
<html lang="en">
 <head>
    <meta charset="UTF-8" />
    <link rel="icon" href="/favicon.ico" />
    <meta name="viewport" content="width=device-width" />
    <title>Vite App</title>
  </head>
 <body>
    <div id="app"></div>
    <div id="dialogs">{/div
    <script type="module" src="/src/main.js"></script>
 </body>
</html>


<template>
  <teleport to="#dialogs">
    <div class="the-dialog">
     <div class="the-dialog_container">
       <div class="the-dialog_header">
          {{ heading }}
        </div>
        Oreferences
        <div class="the-dialog_body"><slot></slot></div>
      </div>
    </div>
  </teleport>
</template>
Irfan

Jawaban yang mirip dengan “Vue Teleport”

Pertanyaan yang mirip dengan “Vue Teleport”

Lebih banyak jawaban terkait untuk “Vue Teleport” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya