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
|
@@ -2715,9 +2715,9 @@ var component = normalizeComponent(
|
|
|
2715
2715
|
var components = [HelloWorld]; // 定义 install 方法
|
|
2716
2716
|
|
|
2717
2717
|
var install = function install(Vue) {
|
|
2718
|
-
if (install.installed) return
|
|
2719
|
-
install.installed = true
|
|
2720
|
-
|
|
2718
|
+
// if (install.installed) return
|
|
2719
|
+
// install.installed = true
|
|
2720
|
+
// 遍历并注册全局组件
|
|
2721
2721
|
components.map(function (component) {
|
|
2722
2722
|
Vue.component(component.name, component);
|
|
2723
2723
|
});
|