GrandSon.vue 445 B

1234567891011121314151617181920
  1. <template>
  2. <div>
  3. <h1 class="h-26 text-6xl">孙组件</h1>
  4. <h3 class="h-20 text-3xl">我收到了{{ news }}朵花</h3>
  5. <button @click="handleClick">给Father组件一些值</button>
  6. </div>
  7. </template>
  8. <script lang="ts" setup>
  9. import { ref } from "vue";
  10. let num = ref(0);
  11. defineProps(["news"]);
  12. const emits = defineEmits(["back"]);
  13. const handleClick = () => {
  14. emits("back", 2);
  15. };
  16. </script>
  17. <style lang="scss" scoped>
  18. </style>