实例 Vue Teleport disable 属性实例

x
 
<template>
  <h1>Teleport</h1>
  <p>The button toggles the Teleport "disabled" prop.</p>
  <comp-one></comp-one>
</template>
<style>
  #app {
    width: 350px;
    margin: 10px;
  }
  #app > div {
    border: solid black 2px;
    padding: 10px;
    margin-top: 10px;
    background-color: rgb(186, 228, 255);
  }
  h2 {
    text-decoration: underline;
  }
</style>                  

输出结果