coreui / coreui-icons

CoreUI Free Icons - Premium designed free icon set with marks in SVG, Webfont and raster formats
https://coreui.io/icons/
Other
1.97k stars 153 forks source link

can't use icons #26

Closed Fengtao1314520 closed 3 years ago

Fengtao1314520 commented 3 years ago

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

woothu commented 3 years ago

Those are icon sets, you need to spread them:

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