@afeefa/vue-app 0.0.200 → 0.0.201
Sign up to get free protection for your applications and to get access to all the features.
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.201
|
package/package.json
CHANGED
@@ -5,6 +5,7 @@
|
|
5
5
|
v-model="model[name]"
|
6
6
|
:label="label || name"
|
7
7
|
:validator="validator"
|
8
|
+
:max="max"
|
8
9
|
v-bind="$attrs"
|
9
10
|
v-on="$listeners"
|
10
11
|
/>
|
@@ -33,6 +34,10 @@ export default class FormFieldDate extends Mixins(FormFieldMixin) {
|
|
33
34
|
validate () {
|
34
35
|
this.$refs.datePicker.validate()
|
35
36
|
}
|
37
|
+
|
38
|
+
get max () {
|
39
|
+
return this.validator?.getParam('max_day')
|
40
|
+
}
|
36
41
|
}
|
37
42
|
</script>
|
38
43
|
|