GeandSon.vue 214 B

1234567891011121314
  1. <template>
  2. <div>
  3. <h1>GrandSon</h1>
  4. <h1>展示:{{ sum }}</h1>
  5. </div>
  6. </template>
  7. <script setup>
  8. import {ref,inject} from "vue";
  9. let {sum} = inject("aaa");
  10. </script>
  11. <style lang="scss" scoped>
  12. </style>