1.到https://www.iconfont.cn建立自己的图标库,并下载。
2.将下载到的iconfont.js引入到自己的项目:import 'icon/myicon/iconfont';
3.定义全局样式:
<style>
.icon {
width: 1em;
height: 1em;
vertical-align: -0.15em;
fill: currentColor;
overflow: hidden;
}
</style>
4.使用:
比如我用在button里面:
<el-button size="mini" type="success" @click="export_excel" icon="my-icon-excel">
<svg class="icon" aria-hidden="true">
<use xlink:href="#my-icon-excel"></use>
</svg>导出 Excel
</el-button>
网友评论