Vue引入element-ui报错:Uncaught TypeError: Cannot read property ‘prototype‘ of undefined
背景使用vue3.0引入element-ui第一步npm i element-ui -S第二步 在main.js 配置如下:import ElementUI from "element-ui";import "element-plus/lib/theme-chalk/index.css";Vue.use(ElementUI)配置无误、代码未报错,运行时页面空白,F12控制台报错:Uncaught
·
背景
使用vue3.0引入element-ui
第一步
npm i element-ui -S
第二步 在main.js 配置如下:
import ElementUI from "element-ui";
import "element-plus/lib/theme-chalk/index.css";
Vue.use(ElementUI)
配置无误、代码未报错,运行时页面空白,F12控制台报错:
Uncaught TypeError: Cannot read property ‘prototype’ of undefined
错误原因:引入element-ui方式错误(vue3.0的坑),正确如下:
第一步
npm install element-plus --save
第二步 配置main.js
import ElementUI from "element-plus";
import "element-plus/lib/theme-chalk/index.css"
Vue.use(ElementUI)
注意哦!!! 是element-plus
重新启动,解决!
更多推荐
已为社区贡献1条内容
所有评论(0)