Child.vue 115 B

123456789
  1. <template>
  2. <p>this is a child component</p>
  3. </template>
  4. <script>
  5. export default {
  6. name: 'child'
  7. }
  8. </script>