@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.200
1
+ 0.0.201
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@afeefa/vue-app",
3
- "version": "0.0.200",
3
+ "version": "0.0.201",
4
4
  "description": "",
5
5
  "author": "Afeefa Kollektiv <kollektiv@afeefa.de>",
6
6
  "license": "MIT",
@@ -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