Vue3怎么使用element-plus 详解Vue3怎么使用element-plus
听听那晚风 人气:0想了解详解Vue3怎么使用element-plus的相关内容吗,听听那晚风在本文为您仔细讲解Vue3怎么使用element-plus的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:Vue3,element-plus,Vue,element-plus,下面大家一起来学习吧。
vue3出来一段时间了,element也更新了版本去兼容vue3,在这里简单的介绍一下如何使用element-plus吧
1、安装
npm install element-plus --save
2、在main.js引入
import { createApp, Vue } from 'vue'; import ElementPlus from 'element-plus'; import 'element-plus/dist/index.css'; import App from './App.vue'; const app = createApp(App) app.use(ElementPlus) app.mount('#app')
3、使用
这里使用的是按钮
<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>
具体的可以查看官方文档
加载全部内容