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/lib/qgb-process.common.js +3 -3
- package/lib/qgb-process.common.js.map +1 -1
- package/lib/qgb-process.umd.js +3 -3
- package/lib/qgb-process.umd.js.map +1 -1
- package/lib/qgb-process.umd.min.js +1 -1
- package/lib/qgb-process.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/packages/index.js +2 -2
- package/src/main.js +1 -0
package/lib/qgb-process.umd.js
CHANGED
|
@@ -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
|
});
|