npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

form-cook-render

v0.0.17

Published

<div align="center">

Downloads

37

Readme

form-cook-render

官网 | 帮助文档

一个基于 Vue 3 + Element Plus 的表单渲染器,通过 Schema 配置即可动态生成表单。 支持扩展组件、远程/动态选项、全局函数事件绑定等,可以直接在项目中使用,也可以在低代码、表单设计器、可视化平台中使用。

npm npm NPM

✨ 特性

📦 开箱即用:只需传入 formSchema,即可生成完整表单。

🎨 Element Plus 生态:内置支持多种 Element Plus 表单组件。

🧩 可扩展:支持外部自定义组件通过注册函数注册使用。

🔄 动态属性:特定属性支持函数/异步函数动态计算,自动监听依赖更新。

🌐 远程数据源:内置远程请求配置,自动映射成表单选项。

⚡ 全局函数:支持在 schema 中绑定全局内置函数,调用渲染器暴露的接口。

🛠 类型安全:TypeScript 类型完整声明,方便开发与扩展,通过 declare module 扩展自定义组件类型。

📦 安装

npm install form-cook-render
# or
yarn add form-cook-render
# or
pnpm add form-cook-render

🚀 快速使用

<script setup lang="ts">
import { ref } from "vue";
import { FormCookRender, registerDefaultComps } from "form-cook-render";
import type { FormSchema } from "form-cook-render";
registerDefaultComps();

const formData = ref({});
const formSchema: FormSchema = {
  formAreaConfig: {
    defaultCreateBtn: "提交",
    defaultRestBtn: "重置",
    attrs: {
      labelWidth: "80px",
    },
  },
  formContentConfigList: [
    {
      id: "input1",
      componentName: "Input",
      componentType: "form",
      formItemAttrs: {
        field: "username",
        label: "用户名",
        required: true,
      },
      attrs: {
        placeholder: "请输入用户名",
      },
    },
    {
      id: "select1",
      componentName: "Select",
      componentType: "form",
      formItemAttrs: {
        field: "gender",
        label: "性别",
      },
      attrs: {
        options: [
          { label: "男", value: "male" },
          { label: "女", value: "female" },
        ],
      },
    },
  ],
};
</script>

<template>
  <form-cook-render
    v-model="formData"
    v-model:form-schema="formSchema"
    @submit="(data) => console.log('提交数据:', data)"
    @reset="console.log('表单已重置')"
  />
</template>

全局安装使用

import { createApp } from "vue";
import App from "./App.vue";
import FormCookRender from "form-cook-render";

const app = createApp(App);

app.use(FormCookRender);

app.mount("#app");