@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>
13 lines (12 loc) • 359 B
JavaScript
;
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
const vue = require("vue");
const useEditFormDialog = () => {
const formRef = vue.ref();
const open = (value) => {
var _a;
(_a = formRef.value) == null ? void 0 : _a.open(value);
};
return [formRef, open];
};
exports.useEditFormDialog = useEditFormDialog;