Child1.vue 370 B

12345678910111213141516171819
  1. <template>
  2. <div>
  3. <h1>Child1</h1>
  4. <h3>{{ money }}元</h3>
  5. <button @click="sendMoney">分一半</button>
  6. </div>
  7. </template>
  8. <script lang="ts" setup>
  9. import emitter from "@/utils/emitter";
  10. import {ref,reactive} from "vue"
  11. let money = ref(1000);
  12. function sendMoney() {
  13. emitter.emit('foo',money.value / 2)
  14. }
  15. </script>
  16. <style lang="scss" scoped>
  17. </style>