vue ssr entry-client 配置 问题

版权声明:本文为博主原创文章,欢迎转载,转载请注明作者、原文超链接 https://blog.csdn.net/qq_40109752/article/details/83793551

return diffed || (diffed = (prevMatched[i] !== c))

// 我们只关心非预渲染的组件
// 所以我们对比它们,找出两个匹配列表的差异组件
let diffed = false
const activated = matched.filter((c, i) => {
// 这里为什么要这样写? 而不是 == prevMatched[i] !== c
  return diffed || (diffed = (prevMatched[i] !== c))
})

if (!activated.length) {
  return next()
}

// 这里如果有加载指示器(loading indicator),就触发

Promise.all(activated.map(c => {
  if (c.asyncData) {
    return c.asyncData({ store, route: to })
  }
})).then(() => {

  // 停止加载指示器(loading indicator)

  next()
}).catch(next)

猜你喜欢

转载自blog.csdn.net/qq_40109752/article/details/83793551