gpt4 book ai didi

typescript - Vue "Cannot access ' __WEBPACK_DEFAULT_EXPORT_ _'"引用组件时

转载 作者:行者123 更新时间:2023-12-04 13:11:48 25 4
gpt4 key购买 nike

我有一个包含四个组件的 Vue 应用程序:
A B C D
在特定模板中,我有这种情况:
A 嵌套在 D 嵌套在 C 嵌套在 B 嵌套在 A
但是当我执行页面时,我收到此错误:

Uncaught ReferenceError: Cannot access '__WEBPACK_DEFAULT_EXPORT__' before initialization
at Module.default (VM989 A.vue:3)
at eval (C.ts:37)
at Object../src/C.ts (bundle.js?v=Eyk_ReZs3kIu049BgV_w3FBVLlup9glNBHL1Wa04y2A:548)
如果我改变这部分:
@Component({
name: 'C',
components: {
'A': A
}
})
export default class C extends Vue { }
以这种(错误的)方式:
@Component({
name: 'C',
components: {
}
})
export default class C extends Vue { }
页面加载但我收到此(正确)错误:
[Vue warn]: Unknown custom element: <dataform> - did you register the component correctly? For recursive components, make sure to provide the "name" option.
我不知道是什么问题...

最佳答案

我处于循环依赖( https://vuejs.org/v2/guide/components-edge-cases.html#Circular-References-Between-Components )中,解决方案是从装饰器中删除组件声明并创建全局引用:

Vue.component('A', A);

关于typescript - Vue "Cannot access ' __WEBPACK_DEFAULT_EXPORT_ _'"引用组件时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64396536/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com