2025-08-06 19:10:12 +08:00
|
|
|
import ModuleWrapper from './Layout/ModuleWrapper.vue'
|
2025-08-19 10:52:32 +08:00
|
|
|
import Flex from './Layout/Flex.vue'
|
|
|
|
|
import Grid from './Layout/Grid.vue'
|
2025-08-06 19:10:12 +08:00
|
|
|
|
2025-08-13 11:51:13 +08:00
|
|
|
import AntOriginSelect from './Form/AntOriginSelect.vue'
|
|
|
|
|
import AntOriginTreeSelect from './Form/AntOriginTreeSelect.vue'
|
2025-08-16 10:13:46 +08:00
|
|
|
import DurationPicker from './Form/DurationPicker.vue'
|
|
|
|
|
|
|
|
|
|
import WangEditor from './WangEditor/Index.vue'
|
2025-08-13 11:51:13 +08:00
|
|
|
|
2025-08-12 09:24:09 +08:00
|
|
|
import Loading from './Directives/Loading'
|
2025-08-06 19:10:12 +08:00
|
|
|
|
2025-08-11 10:58:43 +08:00
|
|
|
import MyCesium from './Cesium/index'
|
|
|
|
|
|
2025-08-06 19:10:12 +08:00
|
|
|
export default {
|
|
|
|
|
install(Vue) {
|
|
|
|
|
Vue.component('ModuleWrapper', ModuleWrapper)
|
2025-08-19 10:52:32 +08:00
|
|
|
Vue.component('Flex', Flex)
|
|
|
|
|
Vue.component('Grid', Grid)
|
2025-08-06 19:10:12 +08:00
|
|
|
|
2025-08-13 11:51:13 +08:00
|
|
|
Vue.component('AntOriginSelect', AntOriginSelect)
|
|
|
|
|
Vue.component('AntOriginTreeSelect', AntOriginTreeSelect)
|
2025-08-16 10:13:46 +08:00
|
|
|
Vue.component('DurationPicker', DurationPicker)
|
|
|
|
|
|
|
|
|
|
Vue.component('WangEditor', WangEditor)
|
2025-08-13 11:51:13 +08:00
|
|
|
|
2025-08-12 09:24:09 +08:00
|
|
|
Vue.directive('loading', Loading)
|
2025-08-11 10:58:43 +08:00
|
|
|
|
|
|
|
|
window.MyCesium = MyCesium
|
2025-08-06 19:10:12 +08:00
|
|
|
},
|
|
|
|
|
}
|