Compare commits

..

No commits in common. "7ddb64ceeb81142cb2e0d5b5b34646e66588c96e" and "6c64010d0f0c35cd9bae69e53f47f3fed47d5431" have entirely different histories.

3 changed files with 37 additions and 42 deletions

View File

@ -43,6 +43,7 @@ export default {
}, },
computed: { computed: {
attrs() { attrs() {
cloneDeep();
if (this.$attrs["remote-method"]) { if (this.$attrs["remote-method"]) {
let obj = cloneDeep(this.$attrs); let obj = cloneDeep(this.$attrs);
Reflect.deleteProperty(obj, "remote-method"); Reflect.deleteProperty(obj, "remote-method");

View File

@ -1,38 +1,32 @@
// 使用 require.context 自动扫描并获取 packages 目录下所有 index.js 文件的引用 // 导入button组件
const requireComponent = require.context('./', true, /index\.js$/); import agInput from './agInput/index'
import agSelect from './agSelect/index'
// 定义一个数组来存储组件配置
const components = requireComponent.keys().reduce((components, fileName) => { // 组件列表
// 排除可能的非 Vue 组件文件(这里假设所有 index.js 都是 Vue 组件) const components = [
if (fileName.endsWith('index.js')) { agInput,
const componentConfig = requireComponent(fileName).default; agSelect
if (componentConfig && componentConfig.name) { ]
components[componentConfig.name] = componentConfig;
} // 定义 install 方法,接收 Vue 作为参数(使用 use 注册插件,那么所有的组件都会被注册)
} const install = function (Vue) {
return components; // 判断是否安装
}, {}); if (install.installed) return
// 遍历注册全局组件
// 定义 install 方法,接收 Vue 作为参数 components.map(component => Vue.component(component.name, component))
const install = function (Vue) { }
if (install.installed) return;
Object.keys(components).forEach(name => { // 判断是否是直接引入文件
Vue.component(name, components[name]); if (typeof window !== 'undefined' && window.Vue) {
}); install(window.Vue)
install.installed = true; }
};
export default {
// 如果是在浏览器环境且全局有 Vue则自动安装 // 导出的对象必须具有 install才能被 Vue.use() 方法安装
if (typeof window !== 'undefined' && window.Vue) { install,
install(window.Vue); }
} export {
// 以下是具体的组件列表
// 导出 install 方法和所有组件 agInput,
export default { agSelect
// 为了方便单独引入组件,可以直接导出 components 对象 }
...components
};
// 注意:虽然这里导出了 components 对象,但通常不建议直接这样使用,
// 因为这样做会破坏组件的模块化封装。更常见的做法是
// 在需要时从该文件中单独导入特定的组件。

View File

@ -1,6 +1,6 @@
<template> <template>
<div> <div>
<agSelect <Pedestal
ref="ref_Pedestal" ref="ref_Pedestal"
v-model="value" v-model="value"
@input="changeInput" @input="changeInput"
@ -17,14 +17,14 @@
>导出</el-button >导出</el-button
> >
</template> --> </template> -->
</agSelect> </Pedestal>
</div> </div>
</template> </template>
<script> <script>
import agSelect from "../packages/agSelect/src/index"; import Pedestal from "../packages/Select/src/index";
export default { export default {
components: { agSelect }, components: { Pedestal },
data() { data() {
return { return {
value: "", value: "",