@hulkapps/app-manager-vue 2.3.0 → 2.3.1
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/dist/app-manager-vue.esm.js +29 -2
- package/dist/app-manager-vue.min.js +2 -2
- package/dist/app-manager-vue.ssr.js +28 -4
- package/dist/hulkapps-app-manager.css +1 -1
- package/dist/hulkapps-app-manager.min.css +1 -1
- package/package.json +1 -1
- package/src/components/Marketing/Banners.vue +15 -1
- package/src/components/Plans/AppManagerPlan.vue +14 -0
|
@@ -22989,6 +22989,10 @@ var script$R = {
|
|
|
22989
22989
|
return 'header';
|
|
22990
22990
|
}
|
|
22991
22991
|
|
|
22992
|
+
},
|
|
22993
|
+
base_url: {
|
|
22994
|
+
type: String,
|
|
22995
|
+
default: null
|
|
22992
22996
|
}
|
|
22993
22997
|
},
|
|
22994
22998
|
|
|
@@ -23040,6 +23044,15 @@ var script$R = {
|
|
|
23040
23044
|
});
|
|
23041
23045
|
}
|
|
23042
23046
|
});
|
|
23047
|
+
},
|
|
23048
|
+
|
|
23049
|
+
created() {
|
|
23050
|
+
if (this.base_url != null) {
|
|
23051
|
+
let config = {
|
|
23052
|
+
baseUrl: this.base_url
|
|
23053
|
+
};
|
|
23054
|
+
install(Vue, config);
|
|
23055
|
+
}
|
|
23043
23056
|
}
|
|
23044
23057
|
|
|
23045
23058
|
};
|
|
@@ -23082,7 +23095,7 @@ var __vue_staticRenderFns__$P = [];
|
|
|
23082
23095
|
const __vue_inject_styles__$R = undefined;
|
|
23083
23096
|
/* scoped */
|
|
23084
23097
|
|
|
23085
|
-
const __vue_scope_id__$R = "data-v-
|
|
23098
|
+
const __vue_scope_id__$R = "data-v-d8ccb5a2";
|
|
23086
23099
|
/* module identifier */
|
|
23087
23100
|
|
|
23088
23101
|
const __vue_module_identifier__$R = undefined;
|
|
@@ -43175,6 +43188,10 @@ var script = {
|
|
|
43175
43188
|
group_plan: {
|
|
43176
43189
|
type: Boolean,
|
|
43177
43190
|
default: false
|
|
43191
|
+
},
|
|
43192
|
+
base_url: {
|
|
43193
|
+
type: String,
|
|
43194
|
+
default: null
|
|
43178
43195
|
}
|
|
43179
43196
|
},
|
|
43180
43197
|
methods: {
|
|
@@ -43183,7 +43200,17 @@ var script = {
|
|
|
43183
43200
|
this.$emit('handle-plan-select', payload);
|
|
43184
43201
|
}
|
|
43185
43202
|
|
|
43203
|
+
},
|
|
43204
|
+
|
|
43205
|
+
created() {
|
|
43206
|
+
if (this.base_url != null) {
|
|
43207
|
+
let config = {
|
|
43208
|
+
baseUrl: this.base_url
|
|
43209
|
+
};
|
|
43210
|
+
install(Vue, config);
|
|
43211
|
+
}
|
|
43186
43212
|
}
|
|
43213
|
+
|
|
43187
43214
|
};
|
|
43188
43215
|
|
|
43189
43216
|
/* script */
|
|
@@ -43220,7 +43247,7 @@ var __vue_staticRenderFns__ = [];
|
|
|
43220
43247
|
const __vue_inject_styles__ = undefined;
|
|
43221
43248
|
/* scoped */
|
|
43222
43249
|
|
|
43223
|
-
const __vue_scope_id__ = "data-v-
|
|
43250
|
+
const __vue_scope_id__ = "data-v-51017144";
|
|
43224
43251
|
/* module identifier */
|
|
43225
43252
|
|
|
43226
43253
|
const __vue_module_identifier__ = undefined;
|