您好,登錄后才能下訂單哦!
這篇文章主要介紹“Element Plus的el-icon如何用”的相關(guān)知識(shí),小編通過實(shí)際案例向大家展示操作過程,操作方法簡單快捷,實(shí)用性強(qiáng),希望這篇“Element Plus的el-icon如何用”文章能幫助大家解決問題。
在 Vue
生態(tài)里, Element UI
是排名前列的組件庫。 在 Vue
發(fā)布到 3.0
時(shí),Element
也發(fā)布了對(duì)應(yīng)的組件庫。也就是 Element Plus
。隨之而來的用法也跟著變了。
比如本文要講的 el-icon
的用法。
在 Element Plus
里,Icon 圖標(biāo)
的用法和以前不一樣了。雖然官方文檔也有說明怎么用,但不是非常詳細(xì),可能會(huì)給新手帶來一丟丟障礙。
本文將花幾分鐘的時(shí)間講解 el-icon
幾種用法和注意事項(xiàng)。
注意:需要留意本文發(fā)表時(shí)間與使用的 Element Plus
版本,隨著時(shí)間的推移可能會(huì)出現(xiàn)使用上的差異。
vue: ^3.2.25
element-plus: ^2.1.7
@element-plus/icons-vue: ^1.1.4
在 vue2 + Element UI
的用法
<i class="el-icon-edit"></i>
在 vue3 + Element Plus
的用法
<ElIcon :size="30" color="hotpink"> <edit /> </ElIcon> <!-- 也可以直接使用圖標(biāo)標(biāo)簽,無需父標(biāo)簽包裹 --> <edit />
個(gè)人覺得,Element UI
的用法會(huì)更加簡單。
下一篇文章我會(huì)講解如何在 Element Plus
的基礎(chǔ)上二次封裝出一個(gè)更好用的 Icon組件
。
Element Plus
拋棄了字體圖標(biāo)的用法,直接使用了 svg
的方式。
可以說,圖標(biāo)這個(gè)東西被拎出來單獨(dú)維護(hù)了。所以在使用前必須把 svg圖標(biāo)庫 下載下來。
下載 svg圖標(biāo)庫 的命令:
npm install @element-plus/icons-vue
你也可以使用 Yarn
或 pnpm
的方式下載
# Yarn yarn add @element-plus/icons-vue # pnpm pnpm install @element-plus/icons-vue
使用的方式有2種,一種是直接使用 svg
,另一種是配合 el-icon
標(biāo)簽一起使用。
接下來就分別講講這兩種使用方式(全局和局部引入都會(huì)講到)
如果你只需使用 Element Plus
提供的 svg圖標(biāo)庫 的話,是可以不安裝 Element Plus
的。不過這種場景應(yīng)該很少出現(xiàn)。
安裝命令:
npm install @element-plus/icons-vue
Element Plus
提供的 svg圖標(biāo)
種類可以到 圖標(biāo)集合 里查看。
通過 svg組件 的方式使用圖標(biāo),如需設(shè)置圖標(biāo)大小和顏色,都需要通過 css
來設(shè)置。
全部引入的方式會(huì)將所有 svg組件 都注冊(cè)到全局,用的時(shí)候比較方便,但會(huì)犧牲一點(diǎn)性能。
main.js
import { createApp } from 'vue' import App from './App.vue' import * as Icons from '@element-plus/icons-vue' // 引入所有圖標(biāo),并命名為 Icons const app = createApp(App) // 通過遍歷的方式注冊(cè)所有 svg組件,會(huì)犧牲一點(diǎn)點(diǎn)性能 for (let i in Icons) { app.component(i, Icons[i]) } app.mount('#app')
如果你不想全部引入,只是想在全局注冊(cè)某個(gè) svg圖標(biāo)組件,可以用以下方式在 main.js
里注冊(cè)(我以 Edit
圖標(biāo)為例)
/* 省略部分代碼 */ import { Edit } from '@element-plus/icons-vue' // 引入 Edit 圖標(biāo) const app = createApp(App) app.component(Edit.name, Edit) // 全局注冊(cè) Edit 圖標(biāo) app.mount('#app')
在頁面中使用
<template> <div> <edit /> </div> </template> <style> svg { width: 40px; height: 40px; color: red; } </style>
局部引入的方式只需在使用的地方引入即可。
<template> <div> <edit /> </div> </template> <script setup> import { Edit } from '@element-plus/icons-vue' // 引入 Edit 這個(gè) svg組件 </script> <style> svg { width: 40px; height: 40px; color: red; } </style>
Element Plus
還提供了 el-icon
組件用來包裹 svg圖標(biāo)組件
,使得設(shè)置圖標(biāo)大小和顏色更加方便。
但需要在項(xiàng)目中安裝 Element Plus
,安裝命令如下:
# 選擇其中一種方式安裝即可。 # NPM npm install element-plus --save # Yarn yarn add element-plus # pnpm pnpm install element-plus
安裝完 Element Plus
后,可以在全局引入,也可以局部引入。
main.js
import { createApp } from 'vue' import ElementPlus from 'element-plus' import 'element-plus/dist/index.css' import { Edit } from '@element-plus/icons-vue' // 引入 Edit 圖標(biāo) import App from './App.vue' const app = createApp(App) app.component(Edit.name, Edit) // 全局注冊(cè) Edit 圖標(biāo) app .use(ElementPlus) .mount('#app')
在頁面中使用
<el-icon :size="20" color="hotpink"> <edit /> </el-icon>
此時(shí),在 el-icon
上設(shè)置 size
和 color
就能控制 svg圖標(biāo) 的大小和顏色。
需要注意的是 size
屬性必須傳數(shù)字,不能傳字符串進(jìn)去!
<template> <div> <el-icon :size="30" color="hotpink"> <edit /> </el-icon> </div> </template> <script setup> import { ElIcon } from 'element-plus' import { Edit } from '@element-plus/icons-vue' import 'element-plus/es/components/icon/style/css' </script>
局部引入的話,我們只需要引入 icon
對(duì)應(yīng)的 css
即可。
如果你在 main.js
引入了 element-plus/dist/index.css
就不需要在頁面再引入 element-plus/es/components/icon/style/css
。
關(guān)于“Element Plus的el-icon如何用”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí),可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會(huì)為大家更新不同的知識(shí)點(diǎn)。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。