af-mobile-client-vue3 1.2.32 → 1.2.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/logic/LogicRunner.ts +1 -1
package/package.json
CHANGED
package/src/logic/LogicRunner.ts
CHANGED
|
@@ -50,7 +50,7 @@ export default class LogicRunner {
|
|
|
50
50
|
* @param params 参数
|
|
51
51
|
* @return 执行结果
|
|
52
52
|
*/
|
|
53
|
-
|
|
53
|
+
public static runExpression(source: string, params: JSONObject): any {
|
|
54
54
|
return ExpressionRunner.run(source, params)
|
|
55
55
|
}
|
|
56
56
|
|