你就听我说,其实很简单的
主要原因是 element-ui 只支持 Vue2.6 以下的版本,如果你想在 Vue3 里去使用这个组件库,就要换成 element-plus
第一步,下载安装 Node.js
打开 http://nodejs.cn/ 网站,下载「长期支持版」,咱就看中文版的吧,一样的
拿到一个 pkg 文件后,咔咔就一顿装就好了
我用的是 Mac,所以我打开「终端」
等安装好后,在终端分别输入 node -v 和 npm -v 命令,用来验证是否安装成功。
第二步,安装 Yarn
npm install -g yarn
因为 yarn 比 npm 快,用 yarn 来安装、删除东西也方便
yarn add / remove 模块名
终端输入 yarn 命令,用来验证是否安装成功
第三步,安装 Vue CLI 脚手架
npm install -g @vue/cli 或 yarn global add @vue/cli
终端输入 vue -V 命令,用来验证是否安装成功
第四步,安装 Element UI 库
vue add element-plus 或 npm install --save element-plus
第五步,编辑 main.js 文件
import { createApp } from 'vue'
import App from './App.vue'
import element from 'element-plus';
import 'element-plus/theme-chalk/index.css'
const app = createApp(App)
app.use(element).mount('#app')
第六步,搞一搞
在 HelloWorld.vue 文件里,我加了几个 button
<template>
<div class="hello">
<el-row>
<el-button>默认按钮</el-button>
<el-button type="primary">主要按钮</el-button>
<el-button type="success">成功按钮</el-button>
<el-button type="info">信息按钮</el-button>
<el-button type="warning">警告按钮</el-button>
<el-button type="danger">危险按钮</el-button>
</el-row>
</div>
</template>
启动项目后,访问 http://localhost:8080/ 就可以看到如下页面了
要是也帮到你,点个赞,关注一下再走咯~ 👇👇👇
|