diff --git a/package.json b/package.json index 8600805..ac7f15e 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "dev": "vue-cli-service serve", "build": "vue-cli-service build", "lint": "vue-cli-service lint", - "lib": "vue-cli-service build --target lib packages/index.js" + "lib": "vue-cli-service build --target lib --dest lib packages/index.js" }, "main": "./lib/myErpElement.umd.min.js", "dependencies": { diff --git a/packages/index.js b/packages/index.js index 2f6acad..965c829 100644 --- a/packages/index.js +++ b/packages/index.js @@ -1,10 +1,10 @@ // 导入button组件 -import mButton from './Button/src/index' -import mButton1 from './Button1/src/index' +import mButton from './Button/index' +import mButton1 from './Button1/index' // 组件列表 const components = [ - mButton,mButton1 + mButton, mButton1 ] // 定义 install 方法,接收 Vue 作为参数(使用 use 注册插件,那么所有的组件都会被注册) @@ -25,5 +25,8 @@ export default { install, } export { - install,mButton,mButton1 + install, + // 以下是具体的组件列表 + mButton, + mButton1, } \ No newline at end of file