Vue teleport

Příklady kódu

1
0

teleport v 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>
0
0

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>

Související stránky

Související stránky s příklady

V jiných jazycích

Tato stránka je v jiných jazycích

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................