|
15 | 15 | <validation name="validation1">
|
16 | 16 | <div class="username">
|
17 | 17 | <label for="username">username:</label>
|
18 |
| - <validity field="username" group="user" :validators="{ |
| 18 | + <validity ref="username" field="username" group="user" :validators="{ |
19 | 19 | required: { message: 'required username !!' }
|
20 | 20 | }">
|
21 |
| - <input id="username" type="text" @input="handleValidate" @focusout="handleValidate"> |
| 21 | + <input id="username" type="text" @input="$refs.username.validate()"> |
22 | 22 | </validity>
|
23 | 23 | </div>
|
24 | 24 | <div class="password">
|
25 | 25 | <label for="password">password:</label>
|
26 |
| - <validity field="password" group="password" :validators="{ |
| 26 | + <validity ref="password" field="password" group="password" :validators="{ |
27 | 27 | minlength: { rule: 8, message: 'too short password !!' },
|
28 | 28 | required: { message: 'required password !!' }
|
29 | 29 | }">
|
30 |
| - <input id="password" type="password" @input="handleValidate" @focusout="handleValidate"> |
| 30 | + <input id="password" type="password" @input="$refs.password.validate()"> |
31 | 31 | </validity>
|
32 | 32 | </div>
|
33 | 33 | <div class="confirm">
|
34 | 34 | <label for="confimr">password (confirm):</label>
|
35 |
| - <validity field="confirm" group="password" :validators="{ |
| 35 | + <validity ref="confirm" field="confirm" group="password" :validators="{ |
36 | 36 | minlength: { rule: 8, message: 'too short confirm !!' },
|
37 | 37 | required: { message: 'required confirm !!' }
|
38 | 38 | }">
|
39 |
| - <input id="confirm" type="password" @input="handleValidate" @focusout="handleValidate"> |
| 39 | + <input id="confirm" type="password" @input="$refs.confirm.validate()"> |
40 | 40 | </validity>
|
41 | 41 | </div>
|
42 | 42 | <input type="submit" value="send" v-if="valid">
|
43 |
| - <div class="errors"> |
44 |
| - <ul> |
45 |
| - <li v-for="error in errors">{{error.field}}: {{error.validator}}</li> |
46 |
| - </ul> |
47 |
| - </div> |
48 |
| - </div> |
| 43 | + <ul class="errors"> |
| 44 | + <li :class="error.field + '-' + error.validator" |
| 45 | + v-for="error in errors">{{error.field}}: {{error.message}}</li> |
| 46 | + </ul> |
49 | 47 | </validation>
|
50 | 48 | </div>
|
51 | 49 | <script>
|
52 | 50 | new Vue({
|
53 | 51 | computed: VueValidator.mapValidation({
|
54 | 52 | valid: '$validation.validation1.valid',
|
55 | 53 | errors: '$validation.validation1.errors'
|
56 |
| - }), |
57 |
| - methods: { |
58 |
| - handleValidate: function (e) { |
59 |
| - e.target.$validity.validate() |
60 |
| - } |
61 |
| - } |
| 54 | + }) |
62 | 55 | }).$mount('#app')
|
63 | 56 | </script>
|
64 | 57 | </body>
|
|
0 commit comments