vue开发在Vue中引入ElementUI在Vue中使用阿里图标库
在Vue项目中引入ElementUI和阿里巴巴图标库可以通过以下步骤进行:
- 安装ElementUI:
npm i element-ui -S
- 在Vue项目中引入ElementUI:
// main.js 或者一个全局的配置文件
import Vue from 'vue'
import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
Vue.use(ElementUI)
- 安装图标库:
npm i @element-plus/icons-vue
- 在Vue组件中使用ElementUI的图标组件:
<template>
<el-button>
<i class="el-icon-plus"></i> 添加
</el-button>
</template>
- 引入阿里巴巴图标库(使用在线链接或者将图标下载到本地):
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/iconsvg/solid.js" />
- 在Vue模板中使用阿里巴巴图标库的图标:
<template>
<div>
<svg class="icon" aria-hidden="true">
<use xlink:href="#icon-xxx"></use> <!-- 这里替换成具体的图标名称 -->
</svg>
</div>
</template>
<style>
.icon {
width: 1em; height: 1em;
vertical-align: -0.15em;
fill: currentColor;
overflow: hidden;
}
</style>
注意:
- 替换
#icon-xxx
为具体的图标名称。 - 确保阿里巴巴图标库的CDN链接是可用的。
- 如果要使用本地图标,需要将图标文件放置在项目中,并通过相对路径引入。
评论已关闭