Element-Plus的使用 本文最后更新于:2024年4月25日 上午 安装 1pnpm i element-plus --save 挂载 12345678910// main.ts[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') icon库 1pnpm install @element-plus/icons-vue 此时可按需引用 123<script setup> import { Key } from '@element-plus/icons-vue'</script> 全局注册 1234567import * as icons from '@element-plus/icons-vue'const app = createApp(App)Object.keys(icons).forEach(key => { app.component(key, icons[key])}) 可在组件内如下使用 12345<template> <el-icon> <key /> </el-icon></template> Vue > Vue3.x > UI框架 #Vue3 #UI框架 Element-Plus的使用 https://qingshaner.com/Element-Plus的使用/ 作者 清山 发布于 2022年3月6日 许可协议 🟡CSS颜色与渐变 上一篇 🔴Windicss 下一篇 Please enable JavaScript to view the comments