Vue安装Element Plus全过程

 更新时间:2024年03月15日 08:45:49   作者:不情不愿  
这篇文章主要介绍了Vue安装Element Plus全过程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教

Vue安装Element Plus

Element UI 是一款基于 Vue 的桌面端组件库,提供了丰富的PC端组件,简化了常用组件的封装,大大降低了开发难度。

随着 Vue 版本的更新,Element-UI 2.x 升级到了Element Plus

使用 Vue CLI 3 需要安装 Element Plus,具体方式如下:

npm全局安装

npm install element-plus --save

打开 package.json 文件可以查看是否安装成功以及安装的版本信息:

在main.js文件中引入

import { createApp } 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')

基本使用

App.vue

<template>
<div id="app">
 <h2>Element-UI 测试</h2>
  <el-row class="mb-4">
    <el-button>Default</el-button>
    <el-button type="primary">Primary</el-button>
    <el-button type="success">Success</el-button>
    <el-button type="info">Info</el-button>
    <el-button type="warning">Warning</el-button>
    <el-button type="danger">Danger</el-button>
    <el-button>中文</el-button>
  </el-row>
 
  <el-row class="mb-4">
    <el-button plain>Plain</el-button>
    <el-button type="primary" plain>Primary</el-button>
    <el-button type="success" plain>Success</el-button>
    <el-button type="info" plain>Info</el-button>
    <el-button type="warning" plain>Warning</el-button>
    <el-button type="danger" plain>Danger</el-button>
  </el-row>
 
  <el-row class="mb-4">
    <el-button round>Round</el-button>
    <el-button type="primary" round>Primary</el-button>
    <el-button type="success" round>Success</el-button>
    <el-button type="info" round>Info</el-button>
    <el-button type="warning" round>Warning</el-button>
    <el-button type="danger" round>Danger</el-button>
  </el-row>
 
  <el-row>
    <el-button :icon="Search" circle />
    <el-button type="primary" :icon="Edit" circle />
    <el-button type="success" :icon="Check" circle />
    <el-button type="info" :icon="Message" circle />
    <el-button type="warning" :icon="Star" circle />
    <el-button type="danger" :icon="Delete" circle />
  </el-row>
</div>
</template>

运行结果

如下:

官网版本:

可以看到 icon 图标信息并没有成功显示。

这是因为,图标由在 Element-UI 版本中的样式,在Element Plus 中被封装成了一个个组件。

安装图标库

npm install @element-plus/icons-vue

然后在main.js中使用for循环

将图标以组件的形式全部引入:

import { createApp } from 'vue'
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
import App from './App.vue'
import * as ElIcon from '@element-plus/icons-vue'
 
const app = createApp(App)
 
for (let iconName in ElIcon){
  app.component(iconName, ElIcon[iconName])
}
app.use(ElementPlus)
app.mount('#app')

需要通过标签的方式使用

<el-icon><Search/></el-icon>

App.vue 

<template>
<div id="app">
 <h2>Element-UI 测试</h2>
 <br>
  <!-- 在组件中使用 -->
  <el-row>
    <el-button circle icon = "Search"></el-button>
    <el-button type="primary" circle icon = "Edit"></el-button>
    <el-button type="success" circle icon = "Check"></el-button>
    <el-button type="info" circle icon = "Message"></el-button>
    <el-button type="warning" circle icon = "Star"></el-button>
    <el-button type="danger" circle icon = "Delete"></el-button>
  </el-row>
  <br>
  <!-- 结合 el-icon 使用 -->
  <el-row>
    <el-icon><Search/></el-icon>
    <el-icon><Edit/></el-icon>
    <el-icon><Check/></el-icon>
    <el-icon><Message/></el-icon>
    <el-icon><Star/></el-icon>
    <el-icon><Delete/></el-icon>
  </el-row>
</div>
</template>

效果如下:

总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

相关文章

  • Vue获取HTMLCollection列表的children时结果为undefined问题

    Vue获取HTMLCollection列表的children时结果为undefined问题

    这篇文章主要介绍了Vue获取HTMLCollection列表的children时结果为undefined问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教
    2024-03-03
  • vue转react入门指南

    vue转react入门指南

    因为新公司使用react技术栈,包括Umi、Dva、Ant-design等一系列解决方案。本文就简单的介绍一下vue转react入门指南,感兴趣的可以了解一下
    2021-10-10
  • vue:内存泄露详解

    vue:内存泄露详解

    这篇文章主要介绍了一个Vue的内存泄露详解,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2021-10-10
  • vue3 Error:Unknown variable dynamic import: ../views/的解决方案

    vue3 Error:Unknown variable dynamic import: ../views/的解

    这篇文章主要给大家介绍了关于vue3 Error:Unknown variable dynamic import: ../views/的解决方案,文中通过图文以及实例代码介绍的非常详细,需要的朋友可以参考下
    2023-07-07
  • Vue3+TypeScript+Vite使用require动态引入图片等静态资源

    Vue3+TypeScript+Vite使用require动态引入图片等静态资源

    本文主要介绍了Vue3+TypeScript+Vite使用require动态引入图片等静态资源,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2022-07-07
  • vite+vue3使用@路径报错处理

    vite+vue3使用@路径报错处理

    本文主要介绍了vite+vue3使用@路径报错处理,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2023-11-11
  • vue forEach循环数组拿到自己想要的数据方法

    vue forEach循环数组拿到自己想要的数据方法

    今天小编就为大家分享一篇vue forEach循环数组拿到自己想要的数据方法,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2018-09-09
  • vue页面图片不显示问题解决方案

    vue页面图片不显示问题解决方案

    这篇文章主要介绍了vue页面图片不显示问题解决方案,本篇文章通过简要的案例,讲解了该项技术的了解与使用,以下就是详细内容,需要的朋友可以参考下
    2021-09-09
  • Vue单页面应用做预渲染的方法实例

    Vue单页面应用做预渲染的方法实例

    vue是一个单页面的应用,这导致一些爬虫和百度无法搜索到,如果你想针对你应用的其中某些页面进行SEO优化,让他们可以被爬虫和百度搜索到,你可以进行预渲染操作,下面这篇文章主要给大家介绍了关于Vue单页面应用做预渲染的相关资料,需要的朋友可以参考下
    2021-10-10
  • vue自定义全局组件(自定义插件)的用法

    vue自定义全局组件(自定义插件)的用法

    这篇文章主要介绍了vue自定义全局组件(自定义插件)的用法,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2018-01-01

最新评论