UNPKG

element-plus-fast-form

Version:

基于 Vue 3 和 Element-Plus 的表单和 CRUD 组件封装库

10 lines (9 loc) 277 B
import { useForm } from "./hooks/useForm"; import type { App } from "vue"; export * from "./types"; declare const ElementPlusFastForm: { readonly useForm: typeof useForm; readonly install: (app: App) => void; }; export { useForm, }; export default ElementPlusFastForm;