问题:vue3中使用element-plus的图标无法正常显示

一、问题描述

根据element-plus官网方式编写并无法展示图标!!

element-plus官网地址: https://element-plus.gitee.io/#/zh-CN/component/installation

    <el-button type="primary">
      <el-icon :size="size" :color="color">
        <edit></edit>
      </el-icon>
      <edit></edit>
    </el-button>

 

二、解决方案

 在查看了大神们的博客之后发现基本有两种解决方案

1.将图标的使用方法转变为组件化的使用

<template>
  <div>
    <!-- 按钮里面的图标 -->
    <el-button type="primary">
      <el-icon :size="size" :color="color">
        <edit></edit>
      </el-icon>
    </el-button>
    <!-- 单纯的图标 -->
    <edit></edit>
  </div>
</template>
<script>
import { Edit } from "@element-plus/icons-vue";

export default {
  name: "HelloWorld",
  props: {
    msg: String,
  },
  components: {
    Edit,
  },
};
</script>

 

 

 

2.利用setup语法糖

这个方案我不仅没有解决问题,还出现了相关问题!我实在不知道怎么使用,没有找到合适的解决方案。在此请教一下大神们~

添加----要想使用step语法糖的话需要利用vite create 项目

 

 

 

 

posted @ 2022-02-15 16:43  ling'er  阅读(4031)  评论(0编辑  收藏  举报