Skip to content

Commit edec7de

Browse files
committed
docs: adderd dataPath arg docs to resolveExpression
1 parent d6931c8 commit edec7de

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

api/generated/common-features.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1239,6 +1239,13 @@ export default {
12391239
],
12401240
"required": true,
12411241
"description": "the expression to resolve"
1242+
},
1243+
"dataPath": {
1244+
"types": [
1245+
"string"
1246+
],
1247+
"required": true,
1248+
"description": "the dataPath of the element (required to resolve * in nested paths relative to the element)"
12421249
}
12431250
}
12441251
},

api/generated/components.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4680,6 +4680,13 @@ module.exports = {
46804680
],
46814681
"required": true,
46824682
"description": "the expression to resolve"
4683+
},
4684+
"dataPath": {
4685+
"types": [
4686+
"string"
4687+
],
4688+
"required": true,
4689+
"description": "the dataPath of the element (required to resolve * in nested paths relative to the element)"
46834690
}
46844691
}
46854692
},

types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4258,7 +4258,7 @@ export declare class Vueform implements DefineComponent {
42584258
validate: () => Promise;
42594259
resetValidators: () => void;
42604260
convertFormData: (data: object) => object;
4261-
resolveExpression: (exp: string) => string;
4261+
resolveExpression: (exp: string, dataPath: string) => string;
42624262
submit: () => Promise;
42634263
send: () => Promise;
42644264
cancel: () => void;

0 commit comments

Comments
 (0)