Loading... ### 现象 A页面引用了B页面为子组件,B页面也引用了A页面为子组件,此时用普通的 ``` import *** from *** components: {***,***} ``` 这种注册组件的方法就会有问题,页面加载时会提示找不到组件 ``` Unknown custom element: *** - did you register the component correctly? For recursive components, make sure to provide the "name" option. ``` ### 解决方法有三种,任选一种(推荐方法3) 1 Globally register MyComponent ``` vue.component("MyComponent", MyComponent) ``` 2 Using beforeCreate ``` beforeCreate: function () { this.$options.components.MyComponent = require('./MyComponent.vue').default } ``` 3 Move the import into a lambda function within the components object ``` components: { MyComponent: () => import('./MyComponent.vue') } ``` 最后修改:2021 年 11 月 02 日 05 : 16 PM © 允许规范转载 赞赏 要多恰饭才能长胖 赞赏作者 支付宝微信