vue3、element-plus项目中的报错信息:

Failed to resolve component: el-form If this is a native custom element, make sure to exclude it

Failed to resolve component: el-form If this is a native custom element, make sure to exclude it

Failed to resolve component el-form-item

Failed to resolve component Descriptions

Component inside <Transition> renders non-element root node that cannot be animated.

原因:

element的按需引入

解决方法:
1.在页面  script 中输入

import { ElForm } from "element-plus";

2.将常用的加入element-plus文件中

import {
    ElForm,
}

const components = [
    ElForm,
]

即可

GitHub 加速计划 / el / element-plus
10
6
下载
element-plus/element-plus: Element Plus 是一个基于 Vue 3 的组件库,提供了丰富且易于使用的 UI 组件,用于快速搭建企业级桌面和移动端的前端应用。
最近提交(Master分支:2 个月前 )
c1863f50 4 个月前
b55163fd 4 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐