Iconfont

官网

https://www.iconfont.cn/home/index?spm=a313x.7781069.1998910419.2

github

image.png

phosphoricons

image.png

官网地址

https://phosphoricons.com/

github

https://github.com/phosphor-icons/phosphor-vue/tree/vue3

https://phosphoricons.com/

Xicons

image.png

官网

https://www.xicons.org/#/

github

https://github.com/07akioni/xicons#installation

  1. <script>
  2. import { Money16Regular } from '@vicons/fluent'
  3. // or
  4. import Money16Regular from '@vicons/fluent/Money16Regular'
  5. // You can directly use the SVG component
  6. // or wrap it in an Icon component from @vicons/utils
  7. import { Icon } from '@vicons/utils'
  8. export default {
  9. components: {
  10. Icon,
  11. Money16Regular
  12. }
  13. }
  14. </script>
  15. <template>
  16. <Icon>
  17. <Money16Regular />
  18. </Icon>
  19. </template>