1
0
mirror of https://github.com/coreui/coreui-icons.git synced 2025-08-21 16:01:25 +02:00
Files
coreui-icons/vue/index.js
2019-06-14 10:51:08 +02:00

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 }