icloud-ui 1.0.20 → 1.0.22

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.
Binary file
Binary file
@@ -105026,17 +105026,18 @@ external_commonjs_vue_commonjs2_vue_root_Vue_default().use((element_ui_common_de
105026
105026
  external_commonjs_vue_commonjs2_vue_root_Vue_default().use((index_common_default()), {
105027
105027
  size: 'small'
105028
105028
  });
105029
+ var uiPrefix = "zcloudUi_";
105029
105030
  // 自定义组件对象
105030
105031
  var CloudtUi = {
105031
105032
  // install 是默认的方法。当外界在 use 这个组件的时候,就会调用本身的 install 方法,同时传一个 Vue 这个类的参数
105032
105033
  install: function install(Vue) {
105033
105034
  // Vue.component() 与正常的全局注册组件用法相同,可以理解为通过 install 和 Vue.use()函数注册了全局组件
105034
- Vue.component('zcloudUi_toolbar', toolbar);
105035
- Vue.component('zcloudUi_card', card);
105036
- Vue.component('zcloudUi_content_layout', contentLayout);
105037
- Vue.component('zcloudUi_content_layout_tab', contentLayoutTab);
105038
- Vue.component('zcloudUi_table_column_drag', tableColumnDrag);
105039
- Vue.component('zcloudUi_table_pager', tablePager);
105035
+ Vue.component(uiPrefix + 'toolbar', toolbar);
105036
+ Vue.component(uiPrefix + 'card', card);
105037
+ Vue.component(uiPrefix + 'content_layout', contentLayout);
105038
+ Vue.component(uiPrefix + 'content_layout_tab', contentLayoutTab);
105039
+ Vue.component(uiPrefix + 'table_column_drag', tableColumnDrag);
105040
+ Vue.component(uiPrefix + 'table_pager', tablePager);
105040
105041
  }
105041
105042
  };
105042
105043
  // 导出