Skip to content
This repository was archived by the owner on Dec 1, 2023. It is now read-only.

Commit 3876fee

Browse files
author
Steffan
committed
Merge branch 'release/0.3.12'
2 parents 33fbc7f + a358c10 commit 3876fee

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Diff for: dist/vue-form.common.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* vue-form v0.3.11
2+
* vue-form v0.3.12
33
* Released under the MIT License.
44
*/
55

@@ -334,7 +334,7 @@ var Fields = function (Vue) {
334334
return result;
335335
}
336336

337-
return expr.call(this, data);
337+
return expr.call(this, data, this);
338338
}
339339

340340
},

Diff for: dist/vue-form.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* vue-form v0.3.11
2+
* vue-form v0.3.12
33
* Released under the MIT License.
44
*/
55

@@ -338,7 +338,7 @@ var Fields = function (Vue) {
338338
return result;
339339
}
340340

341-
return expr.call(this, data);
341+
return expr.call(this, data, this);
342342
}
343343

344344
},

Diff for: dist/vue-form.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-form",
3-
"version": "0.3.11",
3+
"version": "0.3.12",
44
"description": "A form generator for Vue.js",
55
"main": "dist/vue-form.common.js",
66
"keywords": [

Diff for: src/fields.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ export default function (Vue) {
120120
return result;
121121
}
122122

123-
return expr.call(this, data);
123+
return expr.call(this, data, this);
124124
}
125125

126126
},

0 commit comments

Comments
 (0)