Son.vue 300 B

12345678910111213141516171819202122
  1. <template>
  2. <h2 :style="{color}">son级组件</h2>
  3. </template>
  4. <script lang="ts">
  5. import { defineComponent, inject } from 'vue'
  6. export default defineComponent({
  7. name: 'Son',
  8. setup () {
  9. const color = inject('color')
  10. return {
  11. color
  12. }
  13. }
  14. })
  15. </script>
  16. <style scoped>
  17. </style>