Demo6.vue 279 B

12345678910111213141516171819202122
  1. <template>
  2. <div class="demo6">
  3. <h1>默认插槽</h1>
  4. <p>我是一个插槽</p>
  5. <slot></slot>
  6. </div>
  7. </template>
  8. <script>
  9. export default {
  10. }
  11. </script>
  12. <style scoped>
  13. .demo6 {
  14. width: 500px;
  15. height: 500px;
  16. color: #f00;
  17. background: #ff0;
  18. }
  19. </style>