From 3782a9f332304d331243351f58d03167162e185f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8A=B1=E8=A3=A4=E8=A1=A9?= Date: Wed, 24 Jun 2020 10:17:57 +0800 Subject: [PATCH 1/8] perf[chore]: remove preserveWhitespace config (#3280) --- vue.config.js | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/vue.config.js b/vue.config.js index 68b3e99e..33a63483 100644 --- a/vue.config.js +++ b/vue.config.js @@ -81,17 +81,6 @@ module.exports = { }) .end() - // set preserveWhitespace - config.module - .rule('vue') - .use('vue-loader') - .loader('vue-loader') - .tap(options => { - options.compilerOptions.preserveWhitespace = true - return options - }) - .end() - config .when(process.env.NODE_ENV !== 'development', config => { From c63755f4ca1d51cdd38141bb5362e7bdd9a4b85f Mon Sep 17 00:00:00 2001 From: crayymumu <854994301@qq.com> Date: Wed, 1 Jul 2020 13:50:18 +0800 Subject: [PATCH 2/8] perf[Tinymce]: remove useless code (#3295) --- src/components/Tinymce/index.vue | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/components/Tinymce/index.vue b/src/components/Tinymce/index.vue index bde7af50..8993d278 100644 --- a/src/components/Tinymce/index.vue +++ b/src/components/Tinymce/index.vue @@ -211,10 +211,7 @@ export default { window.tinymce.get(this.tinymceId).getContent() }, imageSuccessCBK(arr) { - const _this = this - arr.forEach(v => { - window.tinymce.get(_this.tinymceId).insertContent(``) - }) + arr.forEach(v => window.tinymce.get(this.tinymceId).insertContent(``)) } } } From 0d04d543a7daf297c27c2abc03d5598a06c9f639 Mon Sep 17 00:00:00 2001 From: dyz <43943819+dyzsoft@users.noreply.github.com> Date: Sun, 5 Jul 2020 13:12:46 +0800 Subject: [PATCH 3/8] perf[permission.js]: remove useless code (#3301) --- src/utils/permission.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/utils/permission.js b/src/utils/permission.js index 221d3842..8e2bbada 100644 --- a/src/utils/permission.js +++ b/src/utils/permission.js @@ -13,11 +13,7 @@ export default function checkPermission(value) { const hasPermission = roles.some(role => { return permissionRoles.includes(role) }) - - if (!hasPermission) { - return false - } - return true + return hasPermission } else { console.error(`need roles! Like v-permission="['admin','editor']"`) return false From e7da4ea53223593c35176ecde4aa7179261ec5a9 Mon Sep 17 00:00:00 2001 From: Kerollos Magdy Date: Mon, 20 Jul 2020 12:13:01 +0200 Subject: [PATCH 4/8] typo: replace Css with CSS (#3323) --- src/views/dashboard/admin/components/BoxCard.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/dashboard/admin/components/BoxCard.vue b/src/views/dashboard/admin/components/BoxCard.vue index 4bd0532d..1ec1d378 100644 --- a/src/views/dashboard/admin/components/BoxCard.vue +++ b/src/views/dashboard/admin/components/BoxCard.vue @@ -15,7 +15,7 @@
- Css + CSS
From 347791f319f842de1499690b00ae18497457f2f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8A=B1=E8=A3=A4=E8=A1=A9?= Date: Mon, 27 Jul 2020 10:08:38 +0800 Subject: [PATCH 5/8] docs: add GitAds --- README.es.md | 6 ++++++ README.ja.md | 6 ++++++ README.md | 6 ++++++ README.zh-CN.md | 6 ++++++ 4 files changed, 24 insertions(+) diff --git a/README.es.md b/README.es.md index 472adb60..a41e1b3b 100644 --- a/README.es.md +++ b/README.es.md @@ -74,6 +74,12 @@ Sea un patrocinante y coloque su logo en nuestro LEEME en GitHub con un enlace d

Plantilla de Dashboard de administración hecha con Vue, React y Angular.

+### GitAds + +> vue-element-admin is being sponsored by the following tool; please help to support us by taking a look and signing up to a free trial + +[GitAds](https://tracking.gitads.io/?repo=vue-element-admin) + ## Características ``` diff --git a/README.ja.md b/README.ja.md index 7e23674b..ffbf91d1 100644 --- a/README.ja.md +++ b/README.ja.md @@ -71,6 +71,12 @@ Become a sponsor and get your logo on our README on GitHub with a link to your s

Admin Dashboard Templates made with Vue, React and Angular.

+### GitAds + +> vue-element-admin is being sponsored by the following tool; please help to support us by taking a look and signing up to a free trial + +[GitAds](https://tracking.gitads.io/?repo=vue-element-admin) + ## 機能一覧 ``` diff --git a/README.md b/README.md index 754c5963..e4f1e865 100644 --- a/README.md +++ b/README.md @@ -74,6 +74,12 @@ Become a sponsor and get your logo on our README on GitHub with a link to your s

Admin Dashboard Templates made with Vue, React and Angular.

+### GitAds + +> vue-element-admin is being sponsored by the following tool; please help to support us by taking a look and signing up to a free trial + +[GitAds](https://tracking.gitads.io/?repo=vue-element-admin) + ## Features ``` diff --git a/README.zh-CN.md b/README.zh-CN.md index cb6fd073..74dfedd2 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -89,6 +89,12 @@ Become a sponsor and get your logo on our README on GitHub with a link to your s

Admin Dashboard Templates made with Vue, React and Angular.

+### GitAds + +> vue-element-admin is being sponsored by the following tool; please help to support us by taking a look and signing up to a free trial + +[GitAds](https://tracking.gitads.io/?repo=vue-element-admin) + ## 功能 ``` From 097ff8d91fda171ad7d9be2aaaa9ec78cae8f1d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8A=B1=E8=A3=A4=E8=A1=A9?= Date: Sun, 30 Aug 2020 22:57:38 +0800 Subject: [PATCH 6/8] docs: remove gitads --- README.es.md | 6 ------ README.ja.md | 6 ------ README.md | 6 ------ README.zh-CN.md | 5 ----- 4 files changed, 23 deletions(-) diff --git a/README.es.md b/README.es.md index a41e1b3b..472adb60 100644 --- a/README.es.md +++ b/README.es.md @@ -74,12 +74,6 @@ Sea un patrocinante y coloque su logo en nuestro LEEME en GitHub con un enlace d

Plantilla de Dashboard de administración hecha con Vue, React y Angular.

-### GitAds - -> vue-element-admin is being sponsored by the following tool; please help to support us by taking a look and signing up to a free trial - -[GitAds](https://tracking.gitads.io/?repo=vue-element-admin) - ## Características ``` diff --git a/README.ja.md b/README.ja.md index ffbf91d1..7e23674b 100644 --- a/README.ja.md +++ b/README.ja.md @@ -71,12 +71,6 @@ Become a sponsor and get your logo on our README on GitHub with a link to your s

Admin Dashboard Templates made with Vue, React and Angular.

-### GitAds - -> vue-element-admin is being sponsored by the following tool; please help to support us by taking a look and signing up to a free trial - -[GitAds](https://tracking.gitads.io/?repo=vue-element-admin) - ## 機能一覧 ``` diff --git a/README.md b/README.md index e4f1e865..754c5963 100644 --- a/README.md +++ b/README.md @@ -74,12 +74,6 @@ Become a sponsor and get your logo on our README on GitHub with a link to your s

Admin Dashboard Templates made with Vue, React and Angular.

-### GitAds - -> vue-element-admin is being sponsored by the following tool; please help to support us by taking a look and signing up to a free trial - -[GitAds](https://tracking.gitads.io/?repo=vue-element-admin) - ## Features ``` diff --git a/README.zh-CN.md b/README.zh-CN.md index 74dfedd2..1fddca8f 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -89,11 +89,6 @@ Become a sponsor and get your logo on our README on GitHub with a link to your s

Admin Dashboard Templates made with Vue, React and Angular.

-### GitAds - -> vue-element-admin is being sponsored by the following tool; please help to support us by taking a look and signing up to a free trial - -[GitAds](https://tracking.gitads.io/?repo=vue-element-admin) ## 功能 From fce7214967985352d62ea782be7b7dac400917f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8A=B1=E8=A3=A4=E8=A1=A9?= Date: Mon, 7 Sep 2020 21:37:44 +0800 Subject: [PATCH 7/8] docs: add vue-java-admin-dashboard-spring --- README.es.md | 7 ++++++- README.ja.md | 5 +++++ README.md | 5 +++++ README.zh-CN.md | 5 +++++ src/views/documentation/index.vue | 1 + 5 files changed, 22 insertions(+), 1 deletion(-) diff --git a/README.es.md b/README.es.md index 472adb60..4cca22fc 100644 --- a/README.es.md +++ b/README.es.md @@ -72,7 +72,12 @@ Entendiendo y aprendiendo esto pudiera ayudarle con su proyecto. Sea un patrocinante y coloque su logo en nuestro LEEME en GitHub con un enlace directo a su sitio web. [[Se un Patrocinante]](https://www.patreon.com/panjiachen) -

Plantilla de Dashboard de administración hecha con Vue, React y Angular.

+### Akveo +

Java backend integration

+ +### Flatlogic + +

Admin Dashboard Templates made with Vue, React and Angular.

## Características diff --git a/README.ja.md b/README.ja.md index 7e23674b..4ea2458d 100644 --- a/README.ja.md +++ b/README.ja.md @@ -69,6 +69,11 @@ Become a sponsor and get your logo on our README on GitHub with a link to your site. [[Become a sponsor]](https://www.patreon.com/panjiachen) +### Akveo +

Java backend integration

+ +### Flatlogic +

Admin Dashboard Templates made with Vue, React and Angular.

## 機能一覧 diff --git a/README.md b/README.md index 754c5963..acf9bfa6 100644 --- a/README.md +++ b/README.md @@ -72,6 +72,11 @@ Understanding and learning this knowledge in advance will greatly help the use o Become a sponsor and get your logo on our README on GitHub with a link to your site. [[Become a sponsor]](https://www.patreon.com/panjiachen) +### Akveo +

Java backend integration

+ +### Flatlogic +

Admin Dashboard Templates made with Vue, React and Angular.

## Features diff --git a/README.zh-CN.md b/README.zh-CN.md index 1fddca8f..5d1687ff 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -87,6 +87,11 @@ Become a sponsor and get your logo on our README on GitHub with a link to your site. [[Become a sponsor]](https://www.patreon.com/panjiachen) +### Akveo +

Java 后端整合

+ +### Flatlogic +

Admin Dashboard Templates made with Vue, React and Angular.

diff --git a/src/views/documentation/index.vue b/src/views/documentation/index.vue index d3f77468..e1cf8f65 100644 --- a/src/views/documentation/index.vue +++ b/src/views/documentation/index.vue @@ -1,5 +1,6 @@