bl-common-vue3 3.8.37 → 3.8.38

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +5 -0
  2. package/package.json +4 -4
package/index.js CHANGED
@@ -1,3 +1,8 @@
1
+ /**
2
+ * 组件库入口
3
+ * 按需导入:import { ChooseOrgMember } from 'bl-common-vue3'
4
+ * 全量注册:import BlCommon from 'bl-common-vue3'; app.use(BlCommon)
5
+ */
1
6
  import * as components from "./src/components/components.js";
2
7
 
3
8
  export * from "./src/components/components.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bl-common-vue3",
3
- "version": "3.8.37",
3
+ "version": "3.8.38",
4
4
  "main": "index.js",
5
5
  "module": "index.js",
6
6
  "description": "bailing vue3 common components lib",
@@ -14,9 +14,9 @@
14
14
  "publish": "npm publish --access public"
15
15
  },
16
16
  "exports": {
17
- ".": "./index.js",
18
- "./*": "./src/*",
19
- "./package.json": "./package.json"
17
+ ".": "./lib/vue3common.common.js",
18
+ "./package.json": "./package.json",
19
+ "./lib/*": "./lib/*"
20
20
  },
21
21
  "peerDependencies": {
22
22
  "ant-design-vue": "^3.2.20",