cy-element-ui 1.0.31 → 1.0.32

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cy-element-ui",
3
- "version": "1.0.31",
3
+ "version": "1.0.32",
4
4
  "description": "基于ElementUI开发的组件",
5
5
  "main": "lib/element-ui.common.js",
6
6
  "files": [
package/src/index.js CHANGED
@@ -181,7 +181,6 @@ const components = [
181
181
  Descriptions,
182
182
  DescriptionsItem,
183
183
  Result,
184
- TreeSelect,
185
184
  SubTitle,
186
185
  FileUpload,
187
186
  CollapseTransition
@@ -198,6 +197,7 @@ const install = function(Vue, opts = {}) {
198
197
  Vue.use(InfiniteScroll);
199
198
  Vue.use(Loading.directive);
200
199
  Vue.use(TabDialog);
200
+ Vue.use(TreeSelect);
201
201
 
202
202
  Vue.prototype.$ELEMENT = {
203
203
  size: opts.size || '',
@@ -219,7 +219,7 @@ if (typeof window !== 'undefined' && window.Vue) {
219
219
  }
220
220
 
221
221
  export default {
222
- version: '1.0.29',
222
+ version: '1.0.31',
223
223
  locale: locale.use,
224
224
  i18n: locale.i18n,
225
225
  install,