mirror of
https://github.com/certd/certd.git
synced 2026-06-27 05:47:34 +08:00
27 lines
492 B
JavaScript
27 lines
492 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, key) => {
|
|
app.component(key, item)
|
|
})
|
|
}
|