-
父组件:
<script setup> import { defineAsyncComponent, watchEffect, toRefs, reactive } from 'vue';// 异步组件
const Test = defineAsyncComponent(()=>import('./xx/Test.vue'))const child1Ref = ref(null)
</script> <template> {{ state.age }} -- {{ state.name }} <button @click="state.sayHello">say hello</button> <Test ref="child1Ref"/> </template>
const state = reactive({
age: 1,
name: '2',
sayHello: null,
})
watchEffect(() => {
// 拿到子组件的一些数据
console.log(child1Ref.value)
const obj = toRefs(child1Ref.value)
console.log(obj.a, obj.b)
state.name = obj.b
state.age = obj.a
state.sayHello = obj.onSayHello
}) -
子组件
<script setup> import { ref, defineExpose } from 'vue'const a = ref(101)
const b = ref('sddewfewfew')const onSayHello = () => {
</script> <template>
console.log('hello')
}
defineExpose({
a,
b,
onSayHello,
})Child1
</template>
vue3通过ref获取子组件defineExpose的数据和方法
qq_427506082023-10-08 8:58
相关推荐
墨绿色的摆渡人9 分钟前
论文笔记(七十五)Auto-Encoding Variational Bayes今晚吃什么呢?30 分钟前
前端面试题之CSS中的box属性我是大龄程序员33 分钟前
Babel工作理解《独白》44 分钟前
将图表和表格导出为PDF的功能CopyLower1 小时前
提升 Web 性能:使用响应式图片优化体验南通DXZ1 小时前
Win7下安装高版本node.js 16.3.0 以及webpack插件的构建什码情况1 小时前
微服务集成测试 -华为OD机试真题(A卷、JavaScript)你的人类朋友1 小时前
浅谈Object.prototype.hasOwnProperty.call(a, b)Mintopia2 小时前
深入理解 Three.js 中的 Mesh:构建 3D 世界的基石打瞌睡de喵2 小时前
JavaScript 空对象检测