当前位置:   article > 正文

Vue3安装element-ui 失败的原因及解决方法_vue3引入element报错

vue3引入element报错

在Vue3环境下安装element-ui 执行npm i element-ui -S命令安装时会出现以下错误信息

在这里插入图片描述

因为element-ui不适配vue3,官方已将vue3版本的更新为element-plus

  • Element-ui适用于Vue2框架

  • Element-plus适用于Vue3框架

我们只需要执行npm i element-plus 命令安装element-plus即可
在这里插入图片描述
在这里插入图片描述
在src目录下创建routes目录,并在这个目录下新建index.js(否则elementUI无法显示)

并在main.js中引入以下代码

import { createApp } from 'vue'
import App from './App.vue'

import router from './routes'


import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'

// import ElementUI from 'element-ui'
// import 'element-ui/lib/theme-chalk/index.css';


const app = createApp(App)
app.use(router)
app.use(ElementPlus)
app.config.productionTip = false
app.mount('#app')

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

删除App.vue中不必要的组件

<template>
  <div id="app">sjklsd</div>
  <el-button type="primary">dsdsds</el-button>
</template>

<script>
export default {
name: 'App',
props: {
  msg:String
}
}
</script>

<style>

</style>

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/382149
推荐阅读