Child2.vue 258 B

123456789101112131415
  1. <template>
  2. <div>
  3. <h1>Child2</h1>
  4. <h2>我有一朵{{ flower }}花</h2>
  5. </div>
  6. </template>
  7. <script lang="ts" setup>
  8. import {ref,reactive} from "vue";
  9. let flower = ref("牡丹")
  10. defineExpose({flower})
  11. </script>
  12. <style lang="scss" scoped>
  13. </style>