Ask for advice on how to achieve lazy loading of components in weex?

first make sure that lazy loading is written in this way.
Home: resolve = > {require ([".. /.. / views/Home/home.vue"], resolve)}, / / lazy loading

)

then declare the component:

components: {
      WxcTabBar,
      Home: resolve => {require(["../../views/Home/home.vue"], resolve)},//
}

invoke component:

<Home />

however, there is a problem, there is no exception in the browser, and the component loads normally. But render error appears in android.

clipboard.png

clipboard.png

Mar.07,2021
Menu