1、先安装node.js
node.js的安装_西瓜君的代码的博客-CSDN博客
2、安装vue-cli
vue-cli的安装_西瓜君的代码的博客-CSDN博客
3、安装element-plus
Element UI 安装_西瓜君的代码的博客-CSDN博客
4、idea中使用vue3
在idea中使用vue3_西瓜君的代码的博客-CSDN博客
5、 加入
import ElementPlus from 'element-plus' import 'element-plus/dist/index.css'createApp(App).use(store).use(router).use(ElementPlus).mount('#app')
然后加个按钮去测试一下
<el-button type="primary">Primary</el-button>