当前位置: 代码迷 >> 综合 >> vue 子组件嵌套父组件使用时报错 Unknown custom element: <addPol> - did you register the component correctly
  详细解决方案

vue 子组件嵌套父组件使用时报错 Unknown custom element: <addPol> - did you register the component correctly

热度:75   发布时间:2023-12-22 05:32:06.0

只需将import addPol from "./addPol";改成:异步加载

const addPol = () => import('./addPol.vue')

  相关解决方案