Gathering detailed insights and metrics for @lljj/vue-json-schema-form
Gathering detailed insights and metrics for @lljj/vue-json-schema-form
Gathering detailed insights and metrics for @lljj/vue-json-schema-form
Gathering detailed insights and metrics for @lljj/vue-json-schema-form
@lljj/vjsf-utils
vue json schema form 使用的基础utils工具类
@lljj/schema-form-components
为vue json schema form 提供通用 field widget 组件
@qian_cheng/demo-common
vue json schema form demo公共代码
zhiyun-editor
当前项目实际为 [vue-json-schema-form demo项目](https://github.com/lljj-x/vue-json-schema-form/tree/master/packages/demo/demo-v2) 中活动编辑器的单独仓库。
基于Vue/Vue3,Json Schema 和 ElementUi/antd/iview3/naiveUi 等生成 HTML Form 表单,用于活动编辑器、h5编辑器、cms等数据配置;支持可视化生成表单Schema 。 Generate a form using Vue/Vue3, Json Schema and ElementUi/antdv/iview3/naiveUi
npm install @lljj/vue-json-schema-form
Typescript
Module System
Node Version
NPM Version
JavaScript (65.99%)
Vue (30.46%)
CSS (2.06%)
HTML (0.82%)
Stylus (0.67%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
Apache-2.0 License
2,176 Stars
634 Commits
440 Forks
37 Watchers
9 Branches
6 Contributors
Updated on Jul 15, 2025
Latest Version
1.19.0
Package Id
@lljj/vue-json-schema-form@1.19.0
Unpacked Size
1.22 MB
Size
273.70 kB
File Count
17
NPM Version
lerna/3.22.1/node@v16.20.0+arm64 (darwin)
Node Version
16.20.0
Published on
Oct 05, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
2
26
基于 Element Ui 、Vue2、 JSON Schema 生成表单
通过 @lljj/vue2-form-core 适配 ElementUi 库
1## npm 2npm install --save @lljj/vue-json-schema-form 3 4## yarn 5yarn add @lljj/vue-json-schema-form
1<VueForm 2 v-model="formData" 3 :schema="schema" 4> 5</VueForm>
1// 使用 2import VueForm from '@lljj/vue-json-schema-form'; 3 4export default { 5 name: 'Demo', 6 components: { 7 VueForm 8 }, 9 data() { 10 return { 11 formData: {}, 12 schema: { 13 type: 'object', 14 required: [ 15 'userName', 16 'age', 17 ], 18 properties: { 19 userName: { 20 type: 'string', 21 title: '用户名', 22 default: 'Liu.Jun', 23 }, 24 age: { 25 type: 'number', 26 title: '年龄' 27 }, 28 bio: { 29 type: 'string', 30 title: '签名', 31 minLength: 10, 32 default: '知道的越多、就知道的越少', 33 'ui:options': { 34 placeholder: '请输入你的签名', 35 type: 'textarea', 36 rows: 1 37 } 38 } 39 } 40 } 41 }; 42 } 43};
Apache-2.0
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
2 commit(s) and 4 issue activity found in the last 90 days -- score normalized to 5
Reason
Found 1/15 approved changesets -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
132 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More