vue3.0????????????????????????????????????
Posted ?????????
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue3.0????????????????????????????????????相关的知识,希望对你有一定的参考价值。
?????????
ParentComponents.vue
<!-- 1. ?????????????????????ref -->
<children-component ref="getChildList"></children-component>
...
<script>
import { ref } from \'vue\'
export default {
setup () {
// 2????????????????????????ref???????????????
const getChildList = ref(null)
onMounted (() => {
// 4????????????????????????getList()??????
console.log(getChildList.value.getList())
})
return {
// 3???return??????
getChildList
}
}
})
</script>
?????????
setup () {
// ??????
const getList = () => {
console.log(\'?????????????????????\')
}
return {
getList
}
}
以上是关于vue3.0????????????????????????????????????的主要内容,如果未能解决你的问题,请参考以下文章