coreui / coreui-icons

CoreUI Free Icons - Premium designed free icon set with marks in SVG, Webfont and raster formats

Home Page:https://coreui.io/icons/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

can't use icons

Fengtao1314520 opened this issue · comments

I download coreui-free-vue-admin-template and want use whole icon from 'coreui-icons'
my code is:
in main.js
import { freeSet, brandSet, flagSet } from '@coreui/icons'
new Vue({ el: '#app', router, store, icons: { freeSet, brandSet, flagSet }, template: '<App/>', components: { App, }, })
in vue file
<CIcon name="cil-pregnant" />
but it not work it,

image

Those are icon sets, you need to spread them:

icons: { ...freeSet, ...brandSet, ...flagSet }