myChildPage.vue 244 B

123456789101112131415161718192021
  1. <template>
  2. <div>
  3. {{testData.count}}
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'myChildPage',
  9. inject: {
  10. testData: {
  11. default: () => {
  12. },
  13. },
  14. },
  15. };
  16. </script>
  17. <style scoped>
  18. </style>