zi-ming-ui 1.0.5 → 1.0.7

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.
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "zi-ming-ui",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "private": false,
5
- "main": "package/index.js",
5
+ "main": "src/package/index.js",
6
6
  "scripts": {
7
7
  "serve": "vue-cli-service serve",
8
8
  "build": "vue-cli-service build",
@@ -1,7 +1,9 @@
1
1
  //package/index.js
2
2
  import HorizRadioSelfNaming from "../package/horiz-radio-self-naming/index.vue"; // 引入封装好的组件
3
+ import AppearanceDamageReport from "../package/appearance-damage-report/index.vue"; // 引入封装好的组件
4
+ import Tips from "../package/tips/index.vue"; // 引入封装好的组件
3
5
  import publicjs from "../package/public-js/index.js"; // 引入封装好的方法
4
- const coms = [HorizRadioSelfNaming]; // 将来如果有其它组件,都可以写到这个数组里
6
+ const coms = [Tips,HorizRadioSelfNaming,AppearanceDamageReport]; // 将来如果有其它组件,都可以写到这个数组里
5
7
 
6
8
  // 批量组件注册
7
9
  const install = function (Vue) {