fix(fes-core): 修复热更新导致判定页面的FesHeader和FesLeft错误问题

fix #23
This commit is contained in:
harrywan 2020-09-29 18:19:02 +08:00
parent 7ea0e8b438
commit 33b3b7fef3

View File

@ -61,8 +61,8 @@ const Page = {
// route切换时重新设置为初始值
const comp = (this.$route && this.$route.matched) || [];
if (comp.length > 0) {
const matchPage = comp[comp.length - 1].components.default;
if (this.$options.__file === matchPage.__file) {
const matchPage = comp[comp.length - 1].instances.default;
if (this === matchPage) {
const header = certainConfig(comp, 'FesHeader');
if (typeof header === 'boolean') {
this.$root.header = header;