实例 Vue 默认 Slot 实例 1

x
 
<template>
  <h1>App.vue</h1>
  <p>The component has two <div> tags with one <slot> in each.</p>
  <slot-comp>'Hello!'</slot-comp>
</template>
<script></script>
<style>
  #app {
    width: 300px;
  }
</style>                  

输出结果