File tree Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -1239,6 +1239,13 @@ export default {
1239
1239
] ,
1240
1240
"required" : true ,
1241
1241
"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)"
1242
1249
}
1243
1250
}
1244
1251
} ,
Original file line number Diff line number Diff line change @@ -4680,6 +4680,13 @@ module.exports = {
4680
4680
] ,
4681
4681
"required" : true ,
4682
4682
"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)"
4683
4690
}
4684
4691
}
4685
4692
} ,
Original file line number Diff line number Diff line change @@ -4258,7 +4258,7 @@ export declare class Vueform implements DefineComponent {
4258
4258
validate : ( ) => Promise ;
4259
4259
resetValidators : ( ) => void ;
4260
4260
convertFormData : ( data : object ) => object ;
4261
- resolveExpression : ( exp : string ) => string ;
4261
+ resolveExpression : ( exp : string , dataPath : string ) => string ;
4262
4262
submit : ( ) => Promise ;
4263
4263
send : ( ) => Promise ;
4264
4264
cancel : ( ) => void ;
You can’t perform that action at this time.
0 commit comments