摘要:
父子通讯 最常用的父子间通讯方法, 1:父传子数据:defineProps接收 2:子传父方法:defineEmits抛出 3:ref,在父组件中,使用ref,调用子组件的方法 具体使用方法,看以下栗子: 子组件 child.vue <button @click="giveParentMenthed 阅读全文
摘要:
注:在vue3中使用watch需要按需引入,这也是vue3和vue2的一大区别 例: import { ref, reactive, h, onMounted, watch } from "vue"; 如何使用: const jianting: any = reactive([ { a: 1, b: 阅读全文