Skip to content

Commit ba55f3a

Browse files
committed
修复 WangEditor 问题 #29
修复 页面带参数缓存问题 #28 修复 CheckboxGroup 问题
1 parent cac1565 commit ba55f3a

36 files changed

+2358
-2995
lines changed

.babelrc

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
{
2-
"plugins": [
3-
4-
[
5-
"import",
6-
{
7-
"libraryName": "view-design",
8-
"libraryDirectory": "src/components"
9-
}
10-
]
11-
]
12-
}
2+
"plugins": [
3+
"@babel/plugin-syntax-dynamic-import"
4+
]
5+
}

package-lock.json

Lines changed: 2039 additions & 1189 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
"watch-poll": "npm run watch -- --watch-poll",
88
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
99
"prod": "npm run production",
10-
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
11-
"start": "concurrently -r \"npm:watch*\""
10+
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
1211
},
1312
"devDependencies": {
1413
"@chenfengyuan/vue-qrcode": "^1.0.2",
@@ -17,7 +16,7 @@
1716
"babel-plugin-import": "^1.13.0",
1817
"cross-env": "^5.1",
1918
"element-ui": "^2.13.2",
20-
"laravel-mix": "^4.1.4",
19+
"laravel-mix": "^5.0.4",
2120
"lodash": "^4.17.15",
2221
"popper.js": "^1.16.1",
2322
"resolve-url-loader": "^2.3.1",
@@ -28,16 +27,11 @@
2827
"vue-clipboard2": "^0.3.1",
2928
"vue-dplayer": "0.0.10",
3029
"vue-happy-scroll": "^2.1.1",
31-
"vue-router": "^3.3.2",
30+
"vue-router": "^3.3.3",
3231
"vue-template-compiler": "^2.6.10",
3332
"vue-waterfall2": "^1.9.6",
34-
"wangeditor": "^3.1.1"
35-
},
36-
"dependencies": {
33+
"wangeditor": "^3.1.1",
3734
"@antv/g2plot": "^1.1.6",
38-
"awe-dnd": "^0.3.4",
39-
"babel-plugin-dynamic-import-webpack": "^1.1.0",
40-
"babel-plugin-syntax-dynamic-import": "^6.18.0",
4135
"nprogress": "^0.2.0",
4236
"url-loader": "^3.0.0",
4337
"vue-nprogress": "^0.1.5",

public/0.js

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/0.js.LICENSE.txt

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/*!
2+
* wordcloud2.js
3+
* http://timdream.org/wordcloud2.js/
4+
*
5+
* Copyright 2011 - 2013 Tim Chien
6+
* Released under the MIT license
7+
*/
8+
9+
/*! *****************************************************************************
10+
Copyright (c) Microsoft Corporation.
11+
12+
Permission to use, copy, modify, and/or distribute this software for any
13+
purpose with or without fee is hereby granted.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
16+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
17+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
18+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
19+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
20+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
21+
PERFORMANCE OF THIS SOFTWARE.
22+
***************************************************************************** */
23+
24+
/*! *****************************************************************************
25+
Copyright (c) Microsoft Corporation. All rights reserved.
26+
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
27+
this file except in compliance with the License. You may obtain a copy of the
28+
License at http://www.apache.org/licenses/LICENSE-2.0
29+
30+
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
31+
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
32+
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
33+
MERCHANTABLITY OR NON-INFRINGEMENT.
34+
35+
See the Apache Version 2.0 License for specific language governing permissions
36+
and limitations under the License.
37+
***************************************************************************** */

0 commit comments

Comments
 (0)