Vue의 아이콘

Vue의 아이콘

https://iconpark.oceanengine.com/official

공식 튜토리얼: @icon-park/vue - npm

 1.아이콘파크

2.기본 사용법

다운로드

yarn add  @icon-park/vue --save

시작하다

yarn run serve

프로젝트에서 참조됨

<script>
import { TableFile } from '@icon-park/vue';
export default {
  components: {
    TableFile
  },
  name: 'HelloWorld',
  props: {
    msg: String
  }
}
</script>
<template>
  <div class="hello">
    <table-file theme="outline" size="24" fill="#333" />
  </div>
</template>

즉, 컴포넌트 형태로 참조하여 사용하는 것입니다.

추천

출처blog.csdn.net/weixin_41957626/article/details/132762834