Vue 警告:无法解析组件

问题描述 投票:0回答:2

希望你们一切都好。我目前在使用父组件内的组件时遇到一些问题。我尝试了一些事情但没有成功...... 组件 ModalBoxActionArticle 不想显示,并且我收到以下错误消息:

[Vue warn]:无法解析组件:ModalBoxActionArticle at 在 > 在 在

你能帮我解决这个问题吗?预先感谢您的时间和帮助。

在位于这些组件根部的 vue View 下找到:

<template>
  <div class="home">
      <ImageArticle class="home__component"/>
  </div>
</template>

<script>
import ImageArticle from "../components/imageArticle"

export default {
  name: 'Home',
  components: {
    ImageArticle,
  }
}
</script>

找到下面的ImageArticle组件(我把样式去掉了)

<template>
    <div>
        <article class="postWithImage">
            <ModalBoxActionArticle/>
            <div class="postWithImage__1div">
                <picture class="postWithImage__pictureProfile">
                    <img class="postWithImage__imgProfile" src="../assets/EugenieProfile.jpeg" alt="photo de profile de la personne qui a publié l'image">
                </picture>
                .... here I removed some html to make it more readable ....

        </article>
    </div>
</template>

<script>
import ModalBoxActionArticle from '../components/modalBoxActionArticle'

export default {
    name: 'ImageArticle',
    component : {
        ModalBoxActionArticle
    },
    setup() {
        console.log('%c loading ImageArticle component', 'color:green');
        return {};
    },
}
</script>

最后但并非最不重要的一点是,在下面找到位于 ImageArticle 组件内部的组件 ModalBoxActionArticle

<template> <div class="modal"> <button class="modal__btt modal__btt--alert">Signaler</button> <button class="modal__btt">Partager</button> <button class="modal__btt">Modifier</button> <button class="modal__btt modal__btt--alert">Supprimer</button> </div> </template> <script> export default { name: "ModalBoxActionArticle", setup() { console.log('%cloading ModalBoxActionArticle newest component', 'color:red'); return {}; }, } </script>
    
javascript vue.js vue-component
2个回答
3
投票

ImageArticle.vue

中你已经定义了

component : { ModalBoxActionArticle },
这必须是这样的(字母

s

必须位于单词
component
的末尾):

components : { ModalBoxActionArticle },
    

0
投票
就我而言,发生此错误是因为我的

组件中存在打字错误,而导入

import PropsPassingVue from './components/PropsPassing.vue';
应该是:

import PropsPassing from './components/PropsPassing.vue';
所以请确保您的组件拼写正确!

© www.soinside.com 2019 - 2024. All rights reserved.