mirror of
https://github.com/coreui/coreui-icons.git
synced 2025-08-21 16:01:25 +02:00
11 lines
196 B
JavaScript
11 lines
196 B
JavaScript
import CIcon from './CIcon'
|
|
export { CIcon }
|
|
|
|
const CIconPlugin = {
|
|
install (Vue, customIconSet) {
|
|
CIcon.icons = customIconSet
|
|
Vue.component('CIcon', CIcon)
|
|
}
|
|
}
|
|
export { CIconPlugin }
|