Child1.vue 397 B

1234567891011121314151617
  1. <template>
  2. <div>
  3. <h1>姐姐</h1>
  4. <h3>我有个{{ doll }}</h3>
  5. <button @click="sendDoll">把娃娃给妹妹</button>
  6. </div>
  7. </template>
  8. <script setup lang="ts" name="Child1">
  9. import { ref } from "vue";
  10. import emitter from '@/utils/emitter.ts';
  11. let doll = ref("芭比娃娃");
  12. function sendDoll() {
  13. emitter.emit('love',doll.value)
  14. }
  15. </script>
  16. <style lang="scss" scoped></style>