我看到Webpack在构建Vue应用程序时出现间歇性问题。
构建很少,打开网站时会看到此错误:
Unknown custom element: <MyButton> - did you register the component correctly? For recursive components, make sure to provide the "name" option.
将“中断”代码中的已编译代码与“工作”代码进行比较,我看到的唯一区别是,在工作代码中,我们拥有:
file="src/components/MyButton.vue";t.a=i.exports}
在“破损”代码中,缺少t.a=
部分:
file="src/components/MyButton.vue";i.exports}
我在这里不知所措。发生了什么事?