Child.vue 267 B

123456789101112131415161718192021
  1. <template>
  2. <div class="child">
  3. <h3>我是Child组件</h3>
  4. <Son/>
  5. </div>
  6. </template>
  7. <script>
  8. import Son from './Son'
  9. export default {
  10. name:'Child',
  11. components:{Son},
  12. }
  13. </script>
  14. <style>
  15. .child{
  16. background-color: skyblue;
  17. padding: 10px;
  18. }
  19. </style>