@extscreen/es-core 2.2.19 → 2.2.20
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/dist/index.js +3 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -3991,6 +3991,7 @@ var ESApplication = {
|
|
3991
3991
|
return {
|
3992
3992
|
appInitProps: {},
|
3993
3993
|
appInitUrl: '',
|
3994
|
+
appInitFrom: '',
|
3994
3995
|
appInitParams: {},
|
3995
3996
|
};
|
3996
3997
|
},
|
@@ -4018,6 +4019,7 @@ var ESApplication = {
|
|
4018
4019
|
//
|
4019
4020
|
this.appInitUrl = ESApp.$options.$superProps.url;
|
4020
4021
|
this.appInitParams = ESApp.$options.$superProps.params;
|
4022
|
+
this.appInitFrom = ESApp.$options.$superProps.from;
|
4021
4023
|
|
4022
4024
|
if (!this.appInitUrl) {
|
4023
4025
|
this.appInitUrl = this.$router.options.main;
|
@@ -4066,6 +4068,7 @@ var ESApplication = {
|
|
4066
4068
|
let route = {
|
4067
4069
|
name: this.appInitUrl,
|
4068
4070
|
params: this.appInitParams,
|
4071
|
+
from: this.appInitFrom,
|
4069
4072
|
};
|
4070
4073
|
if (ESLog.isLoggable(ESLog.DEBUG)) {
|
4071
4074
|
console.log('ESApplication', '---------onESCreate---_initPage--push--->>>>', route);
|