mirror of
https://github.com/certd/certd.git
synced 2026-08-02 19:10:15 +08:00
27 lines
491 B
JavaScript
27 lines
491 B
JavaScript
import _ from 'lodash'
|
|||
|
|
import {
|
||
|
|
PlusCircleOutlined,
|
||
|
|
PlusOutlined,
|
||
|
|
CheckOutlined, EditOutlined,
|
||
|
|
ArrowRightOutlined,
|
||
|
|
NodeIndexOutlined,
|
||
|
|
ThunderboltOutlined,
|
||
|
|
DeleteOutlined
|
||
|
|
} from '@ant-design/icons-vue'
|
||
|
|
|
||
|
|
const icons = {
|
||
|
|
PlusCircleOutlined,
|
||
|
|
PlusOutlined,
|
||
|
|
CheckOutlined,
|
||
|
|
EditOutlined,
|
||
|
|
ArrowRightOutlined,
|
||
|
|
NodeIndexOutlined,
|
||
|
|
ThunderboltOutlined,
|
||
|
|
DeleteOutlined
|
||
|
|
}
|
||
|
|
export default function (app) {
|
||
|
|
_.forEach(icons, item => {
|
||
|
|
app.component(item.name, item)
|
||
|
|
})
|
||
|
|
}
|