2024-08-20 12:11:31 +00:00
|
|
|
/*
|
|
|
|
* @Author: Haijun Zhang
|
|
|
|
* @Date: 2022-11-03 15:41:09
|
|
|
|
* @LastEditTime: 2022-11-08 14:34:03
|
|
|
|
* @LastEditors: Haijun Zhang
|
2024-08-21 01:17:14 +00:00
|
|
|
* @Description:
|
2024-08-20 12:11:31 +00:00
|
|
|
* @FilePath: \cmc-web\packages\common\components\index.js
|
|
|
|
*/
|
|
|
|
import Vue from 'vue'
|
|
|
|
import TimeSelect from './TimeSelect.vue'
|
|
|
|
import RichCharts from './rich-chart/index.vue'
|
|
|
|
import SkuTable from './sku-table/index.vue'
|
|
|
|
import WsUploadFile from './upload-file/index.vue'
|
|
|
|
import IfTooltip from './if-tooltip/index.vue'
|
|
|
|
const components = {
|
|
|
|
TimeSelect,
|
|
|
|
RichCharts,
|
|
|
|
SkuTable,
|
|
|
|
WsUploadFile,
|
|
|
|
IfTooltip
|
|
|
|
}
|
|
|
|
Object.keys(components).forEach(key => {
|
2024-08-21 01:17:14 +00:00
|
|
|
Vue.component(key, components[key])
|
2024-08-20 12:11:31 +00:00
|
|
|
})
|