diff --git a/README.md b/README.md index a9736067..c7ed03b6 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ vue - element-ui + element-ui Build Status @@ -30,6 +30,8 @@ English | [简体中文](./README.zh-CN.md) - [Documentation](https://panjiachen.github.io/vue-element-admin-site/#/) +- [Gitter](https://gitter.im/vue-element-admin/discuss) + - [Wiki](https://github.com/PanJiaChen/vue-element-admin/wiki) - [Donate](https://panjiachen.github.io/vue-element-admin-site/#/donate) @@ -39,7 +41,7 @@ English | [简体中文](./README.zh-CN.md) - Base template recommends using: [vueAdmin-template](https://github.com/PanJiaChen/vueAdmin-template)   - Desktop: [electron-vue-admin](https://github.com/PanJiaChen/electron-vue-admin) -**Note: This project uses element-ui@2.0.0+ version, so the minimum compatible vue@2.5.0+** +**Note: This project uses element-ui@2.3.0+ version, so the minimum compatible vue@2.5.0+** ## Preparation @@ -86,6 +88,7 @@ You need to install [node](http://nodejs.org/) and [git](https://git-scm.com/) l - Form example - Two-step login - SplitPane +- Drag Dialog - Dropzone - Sticky - CountTo diff --git a/README.zh-CN.md b/README.zh-CN.md index 80427047..4fc5ebc5 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -7,7 +7,7 @@ vue - element-ui + element-ui Build Status @@ -30,6 +30,8 @@ - [使用文档](https://panjiachen.github.io/vue-element-admin-site/#/zh-cn/) +- [Gitter讨论组](https://gitter.im/vue-element-admin/discuss) + - [Wiki](https://github.com/PanJiaChen/vue-element-admin/wiki) - [Donate](https://panjiachen.github.io/vue-element-admin-site/#/zh-cn/donate) @@ -38,7 +40,7 @@ - 模板建议使用: [vueAdmin-template](https://github.com/PanJiaChen/vueAdmin-template)   - 桌面端: [electron-vue-admin](https://github.com/PanJiaChen/electron-vue-admin) -**注意:该项目使用 element-ui@2.0.0+ 版本,所以最低兼容 vue@2.5.0+** +**注意:该项目使用 element-ui@2.3.0+ 版本,所以最低兼容 vue@2.5.0+** ## 前序准备 @@ -52,7 +54,6 @@ - [手摸手,带你封装一个 vue component](https://segmentfault.com/a/1190000009090836) - [手摸手,带你优雅的使用 icon](https://juejin.im/post/59bb864b5188257e7a427c09) - 响应需求,开了一个qq群 `591724180` 方便大家交流 或者加入该群主 **[圈子](https://jianshiapp.com/circles/1209)** 楼主会经常分享一些技术相关的东西 @@ -99,6 +100,7 @@ - Form example - 二步登录 - SplitPane +- 拖拽 Dialog - Dropzone - Sticky - CountTo diff --git a/package.json b/package.json index a2e81f7e..3fe02dd1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vue-element-admin", - "version": "3.6.4", + "version": "3.6.5", "description": "A magical vue admin. Typical templates for enterprise applications. Newest development stack of vue. Lots of awesome features", "author": "Pan ", "license": "MIT", @@ -18,7 +18,7 @@ "codemirror": "5.32.0", "dropzone": "5.2.0", "echarts": "3.8.5", - "element-ui": "2.0.8", + "element-ui": "2.3.2", "file-saver": "1.3.3", "font-awesome": "4.7.0", "js-cookie": "2.2.0", diff --git a/src/components/BackToTop/index.vue b/src/components/BackToTop/index.vue index cbb1f21d..de953821 100644 --- a/src/components/BackToTop/index.vue +++ b/src/components/BackToTop/index.vue @@ -25,14 +25,16 @@ export default { }, customStyle: { type: Object, - default: { - right: '50px', - bottom: '50px', - width: '40px', - height: '40px', - 'border-radius': '4px', - 'line-height': '45px', - background: '#e7eaf1' + default: function() { + return { + right: '50px', + bottom: '50px', + width: '40px', + height: '40px', + 'border-radius': '4px', + 'line-height': '45px', + background: '#e7eaf1' + } } }, transitionName: { diff --git a/src/components/Tinymce/plugins.js b/src/components/Tinymce/plugins.js index a1a64793..45b42f82 100644 --- a/src/components/Tinymce/plugins.js +++ b/src/components/Tinymce/plugins.js @@ -2,6 +2,6 @@ // Detail plugins list see https://www.tinymce.com/docs/plugins/ // Custom builds see https://www.tinymce.com/download/custom-builds/ -const plugins = ['advlist anchor autolink autoresize autosave bbcode code codesample colorpicker colorpicker contextmenu directionality emoticons fullpage fullscreen hr image imagetools importcss insertdatetime legacyoutput link lists media nonbreaking noneditable pagebreak paste preview print save searchreplace spellchecker tabfocus table template textcolor textpattern visualblocks visualchars wordcount'] +const plugins = ['advlist anchor autolink autosave code codesample colorpicker colorpicker contextmenu directionality emoticons fullscreen hr image imagetools importcss insertdatetime legacyoutput link lists media nonbreaking noneditable pagebreak paste preview print save searchreplace spellchecker tabfocus table template textcolor textpattern visualblocks visualchars wordcount'] export default plugins diff --git a/src/components/UploadExcel/index.vue b/src/components/UploadExcel/index.vue index a1d56670..f17d8aed 100644 --- a/src/components/UploadExcel/index.vue +++ b/src/components/UploadExcel/index.vue @@ -1,6 +1,6 @@