Skip to main content

One post tagged with "performance"

View All Tags

· 5 min read

An image from the static

遇到的问题

最近在做项目的时候遇到一个问题:我们在用组件式开发单页应用的时候,往往会想到用路由懒加载的方式或者说是动态加载页面。vue使用

  import('xxxx')

而react使用 lazy

  lazy(() => import('xxxx'));