You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
479 B
16 lines
479 B
/**
|
|
* 自定义控件仓库
|
|
*/
|
|
import serialNumber from './number/index.vue'
|
|
import urlLink from './urllink/index.vue'
|
|
import orgCitys from './orgcitys/index.vue'
|
|
import baiduMap from './baidumap/index.vue'
|
|
import orgCentent from './org/index.vue'
|
|
|
|
export default (app: any) => {
|
|
app.component('SerialNumber', serialNumber)
|
|
app.component('UrlLink', urlLink)
|
|
app.component('OrgCitys', orgCitys)
|
|
app.component('BaiduMap', baiduMap)
|
|
app.component('OrgCentent', orgCentent)
|
|
}
|
|
|