<template>

    <custom ref="customRef" />

</template>
<script lang="ts" setup >

  import { ref,unref } from 'vue'
  const customRef = ref()

  
  function showAddDialog() {
    /*
      通过unref获取自定义组件对象,
      当然通过customRef.value.someMethod()也是可以调成功的,
      但ts中会有警告。
    */
    unref(customRef).someMethod()
  }
</script>

Logo

前往低代码交流专区

更多推荐