2024-07-05 15:42:19 +08:00
|
|
|
|
// 导入组件
|
2024-09-05 18:34:12 +08:00
|
|
|
|
import agInput from './agInput/index';
|
|
|
|
|
import agSelect from './agSelect/index';
|
|
|
|
|
import agUpdate from './agUpload';
|
2024-09-06 18:16:54 +08:00
|
|
|
|
import agForm from './agForm';
|
2024-09-09 14:27:02 +08:00
|
|
|
|
import agColorPicker from './agColorPicker';
|
2024-09-05 17:32:53 +08:00
|
|
|
|
|
|
|
|
|
// 注册组件
|
|
|
|
|
|
2024-07-05 15:42:19 +08:00
|
|
|
|
// 组件列表
|
|
|
|
|
const components = [
|
|
|
|
|
agInput,
|
2024-09-05 18:34:12 +08:00
|
|
|
|
agSelect,
|
2024-09-06 18:16:54 +08:00
|
|
|
|
agUpdate,
|
2024-09-09 14:27:02 +08:00
|
|
|
|
agForm,
|
|
|
|
|
agColorPicker
|
2024-07-05 15:42:19 +08:00
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
// 定义 install 方法,接收 Vue 作为参数(使用 use 注册插件,那么所有的组件都会被注册)
|
|
|
|
|
const install = function (Vue) {
|
|
|
|
|
// 判断是否安装
|
|
|
|
|
if (install.installed) return
|
|
|
|
|
// 遍历注册全局组件
|
|
|
|
|
components.map(component => Vue.component(component.name, component))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 判断是否是直接引入文件
|
|
|
|
|
if (typeof window !== 'undefined' && window.Vue) {
|
|
|
|
|
install(window.Vue)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
// 导出的对象必须具有 install,才能被 Vue.use() 方法安装
|
|
|
|
|
install,
|
|
|
|
|
}
|
|
|
|
|
export {
|
|
|
|
|
// 以下是具体的组件列表
|
|
|
|
|
agInput,
|
2024-09-05 18:34:12 +08:00
|
|
|
|
agSelect,
|
2024-09-06 18:16:54 +08:00
|
|
|
|
agUpdate,
|
|
|
|
|
agForm
|
2024-07-05 15:42:19 +08:00
|
|
|
|
}
|