0

我目前在一个基于 Vuepress 的静态网站上工作。在 .md 文件中注册 Vue 组件时出现错误。

[Vue warn]: Unknown custom element: <v-b86f6654149c6> - did you register the component correctly? For recursive components, make sure to provide the "name" option.

found in

---> <Page> at lib/default-theme/Page.vue
       <Layout> at lib/default-theme/Layout.vue
         <Root

无法挂载组件,Vue devtools中的组件树只显示

<Page>
     <Content>

里面什么都没有。

如果我点击刷新,组件会正确呈现,我有什么期望:

<Page>
     <VXXXXXXX>
         <Component1>
         <Component2>


问题看起来类似于此处引用的内容:https ://github.com/vuejs/vuepress/issues/1173但我找不到有效的解决方案。

例如,我有一个/docs/contact/README.md看起来像:

---
title: a title
description: a description
pageClass: homepage subpage contact
headerText: Contact
blackSubText: some text
submitText: Envoyer
submitImage: /img/icons/green-arrow.png

---

<headerTextComponent/>

<formulaire type="contact" formId="/6db97999-f466-4250-aa47-bd6e96a6b520" :fields="['contactobject', 'message']"/>


<blog/>


并且我上面引用的自定义组件在 中/docs/.vuepress/components,都是具有 name 属性集的常规 Vue 组件。

4

1 回答 1

1

我只是有一个类似的问题。然而,经过数小时的谷歌搜索和重建VuePress,我尝试访问http://127.0.0.1:8081而不是访问http://localhost:8081- 它成功了!

我认为这是一个缓存问题或类似的问题 - 即使没有安装服务工作者。

于 2020-11-05T08:50:48.850 回答