vue2-client 1.8.128 → 1.8.129
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
CHANGED
|
@@ -395,6 +395,7 @@ export default {
|
|
|
395
395
|
// 挨个获取插槽
|
|
396
396
|
waitForDownloadSlotName.forEach(configName => {
|
|
397
397
|
getConfigByName(configName, undefined, res => {
|
|
398
|
+
console.warn('res', res)
|
|
398
399
|
this.configFromWeb[configName] = res
|
|
399
400
|
count++
|
|
400
401
|
})
|
|
@@ -446,16 +447,12 @@ export default {
|
|
|
446
447
|
}
|
|
447
448
|
},
|
|
448
449
|
beforeMount () {
|
|
449
|
-
console.warn('123', this.localConfig)
|
|
450
450
|
if (this.localConfig) {
|
|
451
|
-
console.warn('1')
|
|
452
451
|
this.config = this.localConfig
|
|
453
452
|
this.configInit()
|
|
454
453
|
} else {
|
|
455
454
|
getConfigByName(this.configName, undefined, res => {
|
|
456
|
-
console.warn('res', res)
|
|
457
455
|
this.config = res
|
|
458
|
-
console.warn('2', res)
|
|
459
456
|
this.configInit()
|
|
460
457
|
})
|
|
461
458
|
}
|