Gathering detailed insights and metrics for element-auto-form
Gathering detailed insights and metrics for element-auto-form
Gathering detailed insights and metrics for element-auto-form
Gathering detailed insights and metrics for element-auto-form
form-making
A designer and generator of form base on Vue.js, make form development simple and efficient.
jeeplus-form
A designer and generator of form base on Vue.js, make form development simple and efficient.
asset-form-making
A designer and generator of form base on Vue.js, make form development simple and efficient.
@aqsc/form-making
A designer and generator of form base on Vue.js, make form development simple and efficient.
npm install element-auto-form
Typescript
Module System
Node Version
NPM Version
JavaScript (58.86%)
Vue (37.44%)
HTML (3.7%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
3 Commits
1 Watchers
1 Branches
1 Contributors
Updated on Oct 25, 2018
Latest Version
0.1.1
Package Id
element-auto-form@0.1.1
Unpacked Size
141.40 kB
Size
30.83 kB
File Count
19
NPM Version
5.6.0
Node Version
8.11.4
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
19
State: development Create and validate form with element-ui and JSON schema. Fast and simple.
npm i element-auto-form --save-exact
import ElementAutoFrom from 'element-auto-form'
let schema = {
'$schema': 'http://json-schema.org/draft-04/schema#',
'type': 'object',
'attributes': {
'size': 'small',
'class': 'auto-form'
},
'properties': {
'name': {
'type': 'string',
'minLength': 4,
'maxLength': 30,
'attributes': {
'label': 'Full Name',
'description': 'Please enter your full name. Min length 4, max length 30',
'placeholder': 'Your Full Name'
}
},
'email': {
'type': 'string',
'maxLength': 255,
'attributes': {
'type': 'email',
'placeholder': 'Your Email',
'label': 'Emails',
'description': 'Please enter your email'
}
},
'list': {
'type': 'string',
'enum': [
+ 'Daily News',
'Promotion'
],
'attributes': {
'placeholder': 'Select your list subscription',
'description': 'Please select your list subscription'
}
},
'agree': {
'type': 'boolean',
'default': false,
'attributes': {
'label': 'I`m agree',
'type': 'checkbox'
}
}
},
'additionalProperties': false,
'required': [
'name',
'email',
'agree'
]
}
const App = new Vue({
el: '#app',
template: `
<div>
<element-auto-form ref="autoForm" :schema="schema" :extend="extend" v-model="model">
<el-form-item slot="header">
<h1>
Form Name
</h1>
</el-form-item>
<el-form-item slot="footer">
<el-button @click="$refs.autoForm.validate().then(v => console.log('After validate'))">Validate and submit</el-button>
</el-form-item>
</element-auto-form>
</div>`,
data () {
return {
schema: schema,
extend: {
attributes: {
'label-width': '160px'
}
},
model: {
name: '',
email: '',
list: '',
agree: false
}
}
},
mounted () {
}
})
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 0/3 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
63 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