doway-coms 1.4.52 → 1.4.54

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,6 +1,6 @@
1
1
  {
2
2
  "name": "doway-coms",
3
- "version": "1.4.52",
3
+ "version": "1.4.54",
4
4
  "description": "doway组件库",
5
5
  "author": "dowaysoft",
6
6
  "main": "packages/index.js",
package/packages/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ import Vue from 'vue'
1
2
  // 导入组件
2
3
  import BaseInput from './BaseInput/index';
3
4
  import BaseCheckbox from './BaseCheckbox/index';
@@ -82,10 +83,9 @@ import Contextmenu from "vue-contextmenujs"
82
83
  Vue.use(Contextmenu);
83
84
 
84
85
  const install = function (Vue) {
85
- if (install.installed === true) return console.log('install', install.installed);
86
86
  //注册grid组件
87
87
  Vue.use(VXETable)
88
-
88
+ Vue.use(Contextmenu)
89
89
  // 遍历注册全局组件
90
90
  components.forEach((component) => {
91
91
  Vue.component(component.name, component);