UNPKG

@vrx-arco/pro-components

Version:

<p align="center"> <img src="https://vrx-arco.github.io/arco-design-pro/favicon.svg" width="200" height="250"> </p>

10 lines (9 loc) 204 B
import { ref } from "vue"; const useEditFormDialog = () => { const formRef = ref(); const open = (value) => { formRef.value?.open(value); }; return [formRef, open]; }; export { useEditFormDialog };