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????????????????????????????????????的主要内容,如果未能解决你的问题,请参考以下文章

vue3.0需要学习的技术栈

vue3.0????????????????????????????????????

vue3.0都有哪些新特性

vue3.0总结

vue3.0 和 2.0的差异

Vue3.0 项目启动(打造企业级音乐App)