qgb-process 0.1.56 → 0.1.57

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": "qgb-process",
3
- "version": "0.1.56",
3
+ "version": "0.1.57",
4
4
  "private": false,
5
5
  "description": "",
6
6
  "author": "",
package/packages/index.js CHANGED
@@ -7,8 +7,8 @@ const components = [
7
7
 
8
8
  // 定义 install 方法
9
9
  const install = function (Vue) {
10
- if (install.installed) return
11
- install.installed = true
10
+ // if (install.installed) return
11
+ // install.installed = true
12
12
  // 遍历并注册全局组件
13
13
  components.map(component => {
14
14
  Vue.component(component.name, component)
package/src/main.js CHANGED
@@ -4,6 +4,7 @@ import ElementUI from 'element-ui';
4
4
  import 'element-ui/lib/theme-chalk/index.css';
5
5
 
6
6
  Vue.config.productionTip = false
7
+ console.log(ElementUI)
7
8
  Vue.use(ElementUI);
8
9
 
9
10