首页 前端知识 vue报错If this is a native custom element

vue报错If this is a native custom element

2024-05-22 09:05:01 前端知识 前端哥 418 795 我要收藏

原始错误

If this is a native custom element, make sure to exclude it from component resolution via compilerOptions.isCustomElement.

在这里插入图片描述

解决方法(一种)

import Hello from './pages/hello.vue'
export default {
    data(){
        return{

        }
    },
    methods:{

    },
    component:{
        Hello
    }
}

component忘了加s

import Hello from './pages/hello.vue'
export default {
    data(){
        return{

        }
    },
    methods:{

    },
    components:{
        Hello
    }
}
转载请注明出处或者链接地址:https://www.qianduange.cn//article/9093.html
标签
评论
发布的文章

jQuery初学

2024-05-29 10:05:14

Jquery中$,web开发语言

2024-05-29 10:05:25

jQuery 实现小球撞击动画

2024-05-29 10:05:04

echarts 横向柱状图

2024-05-29 10:05:01

Echarts:读取动态数据

2024-05-29 10:05:53

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!