尝试清除浏览器缓存,重新加载页面查看图标是否显示: 有时候,浏览器缓存可能会导致图标不显示。尝试清除浏览器缓存,然后重新加载页面,看看图标是否能够正常显示。 按照以上步骤进行排查和解决,通常可以解决 Element Plus 图标不显示的问题。如果问题依然存在,可能需要更详细地检查你的项目配置和代码实现。
第一步:确认是否安装了element-plus/icons 安装命令如下: npm install @element-plus/icons-vue 第二步:main.js引入 import*asElementPlusIconsVuefrom'@element-plus/icons-vue'for(const[key,component]ofObject.entries(ElementPlusIconsVue)){app.component(key,component)} 已自测过多次,放心使用!
</template> import { Edit, Aim } from "@element-plus/icons-vue"; 图标可以显示出来了 如图
第一种:我项目下的就是element-plus 但是他官网说的图标引入方法我不能用,但是我用vue2的图标引入写法 在里面就能显示 第二种:比如:有个图标叫select,最好给图标起个别名,然后当作组件引入。就可以使用了,记得使用组件别名做标签!!
按照ElementPlus官网的示例使用icon并不会显示对应的icon https://element-plus.gitee.io/zh-CN/component/icon.html 解决方案是: 首先需要安装icons,使用对应的包管理工具 1 $ npm install @element-plus/icons-vue 然后在你的Vue项目中的main.js需要将icon进行注册 ...
导入Element Plus图标 <template><el-button icon="Search"/></template>import{Search}from"Element-Plus/icon-vue"exportdefault{name:"App",components:{},setup(){return{}}} 但是你会发现这样图标不会显示,所以你可以把它注册成为一个组件,Vue自然会根据组件名称查找图标。 <template><el-button...
1. 全局引入所有图标组件 a. 在main.js中先导入所有图标 import * as ElementPlusIconsVue from '@element-plus/icons-vue' b. 循环注册 // 注册全局图标 for (let [key, component] of Object.entries(ElementPlusIconsVue)) { app.component(key, component) } 2. 在TreeMenu中动态加载图标 <el-icon>...
1.首先图标要按需引入 // 一个用户图像+密码锁图标 import { Avatar, Lock } from "@element-plus/icons-vue"; 2.引用的图标要通过Setup进行注册(最核心的一点) 千万不要用components,不要问为啥,因为这是在Vue3中,新引入的Avatar, Lock要注册到全局,使之变成响应式。
刚用vue3+elementui-plus+vite+ts建了个项目,结果icon图标都显示方框。。。试了半天,才发现是vite版本问题。 卸载原来版本的vite npm un vite 安装2.3.7的就可以了 npm i vite@2.3.7 -save 参考:https://github.com/vitejs/vite/issues/3989