-
-
Notifications
You must be signed in to change notification settings - Fork 129
/
umd.html
51 lines (47 loc) · 1.59 KB
/
umd.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>MobX React Form (UMD)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<script src="https://unpkg.com/[email protected]/lodash.min.js"></script>
<script src="https://unpkg.com/[email protected]/lib/mobx.umd.js"></script>
<script src="umd/MobxReactForm.umd.min.js"></script>
<script src="umd/MobxReactFormValidatorDVR.umd.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/validator.js"></script>
<script>
/* eslint no-console: 0 */
/* eslint no-undef: 0 */
console.log('lodash', _ && '>>> OK');
console.log('mobx', mobx && '>>> OK');
console.log('MobxReactForm', MobxReactForm && '>>> OK');
console.log('MobxReactFormValidatorDVR', MobxReactFormValidatorDVR && '>>> OK');
console.log('Validator', Validator && '>>> OK');
const { Form } = MobxReactForm;
const form = new Form({
fields: {
email: {
label: 'Email',
rules: 'required|email',
},
},
}, {
name: 'UMD',
options: {
validateOnInit: true,
showErrorsOnInit: true,
},
plugins: {
dvr: MobxReactFormValidatorDVR({
package: Validator
})
},
});
console.log('form.values()', form.values()); // { email: "" }
console.log('form.errors()', form.errors()); // { email: "The Email format is invalid." }
</script>
</body>
</html>