Child.vue 234 B

1234567891011121314151617181920212223
  1. <template>
  2. <div>
  3. testB的子组件
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: '',
  9. props: {},
  10. data () {
  11. return {
  12. }
  13. },
  14. mounted () {},
  15. methods: {
  16. }
  17. }
  18. </script>
  19. <style lang="scss" scoped>
  20. </style>