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.
@@ -2724,9 +2724,9 @@ var component = normalizeComponent(
2724
2724
  var components = [HelloWorld]; // 定义 install 方法
2725
2725
 
2726
2726
  var install = function install(Vue) {
2727
- if (install.installed) return;
2728
- install.installed = true; // 遍历并注册全局组件
2729
-
2727
+ // if (install.installed) return
2728
+ // install.installed = true
2729
+ // 遍历并注册全局组件
2730
2730
  components.map(function (component) {
2731
2731
  Vue.component(component.name, component);
2732
2732
  });