Skip to content

Icon 图标

常用的图标集合。

基础用法

悬停在下拉菜单上以展开更多操作。

<script setup>
import PfIcon from '@/components/lib/Icon/src/Icon.vue'
</script>
<template>
  <div class="mb-4">
    <pf-icon icon="arrow-up" />
    <pf-icon icon="pen-to-square" size="xl" />
    <pf-icon icon="share-nodes" type="primary" />
    <pf-icon icon="trash-can" color="#0e7a0d" />
    <pf-icon icon="magnifying-glass" size="xl" type="success" rotation="90" />
    <pf-icon
      icon="arrow-up-from-bracket"
      size="2x"
      type="danger"
      title="Upload"
    />
    <pf-icon icon="fa-spinner" spin />
  </div>
</template>
<style scoped>
.pf-icon {
  margin-right: 15px;
}
</style>

Icon 属性

NameDescriptionTypeDefault
icon图标object | Array<string> | string | IconDefinition''
type图标类型'primary' | 'success' | 'warning' | 'danger' | 'info'-
color图标颜色^[string]''
spin自旋^[boolean]false
fixedWidth固定宽度^[boolean]false
listItem列表项^[boolean]false
swapOpacity交换不透明度^[boolean]false
flip翻转'horizontal' | 'vertical' | 'both'-
rotation旋转rotation?: 90 | 180 | 270 | '90' | '180' | '270'-
transform动画^[object]-

图标集合

在线网站

图标集合