Parent.vue 279 B

123456789101112131415161718192021
  1. <template>
  2. <div>
  3. <h1>parent</h1>
  4. <main>
  5. <child />
  6. <child />
  7. <child />
  8. </main>
  9. </div>
  10. </template>
  11. <script>
  12. import Child from './Child.vue'
  13. export default {
  14. name: 'parent',
  15. components: {
  16. Child
  17. }
  18. }
  19. </script>