backend-management-ui 1.3.4 → 1.3.6
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/backend-management-ui.common.js +23 -2
- package/backend-management-ui.common.js.map +1 -1
- package/backend-management-ui.umd.js +23 -2
- package/backend-management-ui.umd.js.map +1 -1
- package/backend-management-ui.umd.min.js +2 -2
- package/backend-management-ui.umd.min.js.map +1 -1
- package/package.json +2 -4
|
@@ -5835,7 +5835,8 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
5835
5835
|
UiForm: function() { return /* reexport */ ui_form; },
|
|
5836
5836
|
UiTable: function() { return /* reexport */ ui_table; },
|
|
5837
5837
|
UiVirtualSelect: function() { return /* reexport */ ui_virtual_select; },
|
|
5838
|
-
"default": function() { return /* binding */ entry_lib; }
|
|
5838
|
+
"default": function() { return /* binding */ entry_lib; },
|
|
5839
|
+
install: function() { return /* reexport */ install; }
|
|
5839
5840
|
});
|
|
5840
5841
|
|
|
5841
5842
|
;// ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
|
|
@@ -7143,13 +7144,33 @@ var ui_virtual_select_component = normalizeComponent(
|
|
|
7143
7144
|
|
|
7144
7145
|
|
|
7145
7146
|
const components = [ui_form, ui_table, ui_btns, business_status, ui_dialog, ui_virtual_select];
|
|
7147
|
+
|
|
7148
|
+
// 单独定义install函数
|
|
7146
7149
|
const install = function (Vue) {
|
|
7147
7150
|
components.forEach(component => {
|
|
7148
7151
|
Vue.component(component.name, component);
|
|
7149
7152
|
});
|
|
7150
7153
|
};
|
|
7151
|
-
/* harmony default export */ var elementConfig = (install);
|
|
7152
7154
|
|
|
7155
|
+
// 创建导出对象
|
|
7156
|
+
const backendManagementUi = {
|
|
7157
|
+
install,
|
|
7158
|
+
UiForm: ui_form,
|
|
7159
|
+
UiTable: ui_table,
|
|
7160
|
+
UiBtns: ui_btns,
|
|
7161
|
+
Status: business_status,
|
|
7162
|
+
UiDialog: ui_dialog,
|
|
7163
|
+
UiVirtualSelect: ui_virtual_select
|
|
7164
|
+
};
|
|
7165
|
+
|
|
7166
|
+
// 导出整个对象作为默认导出,同时也导出所有组件和install方法
|
|
7167
|
+
/* harmony default export */ var elementConfig = (backendManagementUi);
|
|
7168
|
+
|
|
7169
|
+
|
|
7170
|
+
// 确保在浏览器环境中可以直接使用
|
|
7171
|
+
if (typeof window !== 'undefined' && window.Vue) {
|
|
7172
|
+
window.Vue.use(backendManagementUi);
|
|
7173
|
+
}
|
|
7153
7174
|
;// ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
|
|
7154
7175
|
|
|
7155
7176
|
|