Skip to content

Commit e5ac061

Browse files
zanehysongyd130zhanghongyan-tal
authored
refactor: 0.6.0 new dashboard (#56)
Co-authored-by: songyd130 <[email protected]> Co-authored-by: zhanghongyan <[email protected]>
1 parent b93141b commit e5ac061

File tree

163 files changed

+14008
-23172
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

163 files changed

+14008
-23172
lines changed

.browserslistrc

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
> 1%
22
last 2 versions
3+
not ie <= 8

.env

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
NODE_ENV=local
2+
VUE_APP_ROOT="http://0.0.0.0:3000"

.eslintrc.js

+4-25
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,14 @@
11
module.exports = {
22
root: true,
3-
43
env: {
5-
node: true
4+
node: true,
65
},
7-
86
extends: ["plugin:vue/essential", "@vue/prettier"],
9-
107
rules: {
11-
'no-console': 'off',
12-
'no-debugger': 'off'
8+
"no-console": process.env.NODE_ENV === "production" ? "error" : "off",
9+
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off",
1310
},
14-
1511
parserOptions: {
16-
parser: 'babel-eslint'
12+
parser: "babel-eslint",
1713
},
18-
19-
overrides: [
20-
{
21-
files: [
22-
'**/__tests__/*.{j,t}s?(x)',
23-
'**/tests/unit/**/*.spec.{j,t}s?(x)'
24-
],
25-
env: {
26-
jest: true
27-
}
28-
}
29-
],
30-
31-
'extends': [
32-
'plugin:vue/essential',
33-
'@vue/prettier'
34-
]
3514
};

.gitignore

+6-20
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,7 @@
1-
.DS_Store
2-
node_modules
1+
.env
2+
.idea/
3+
node_modules/
4+
dist/
5+
package-lock.json
6+
/docs
37
/dist
4-
5-
# local env files
6-
.env.local
7-
.env.*.local
8-
9-
# Log files
10-
npm-debug.log*
11-
yarn-debug.log*
12-
yarn-error.log*
13-
14-
# Editor directories and files
15-
.idea
16-
.vscode
17-
*.suo
18-
*.ntvs*
19-
*.njsproj
20-
*.sln
21-
*.sw?

.jshintrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"esversion": 6
3+
}

.travis.yml

-25
This file was deleted.

.travis/LICENSE

-201
This file was deleted.

.travis/README.md

-1
This file was deleted.

CHANGELOG.md

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# Change Log
2+
3+
## [1.5.0] 2021-10-08
4+
### Dependencies Updates
5+
- Updated all out of date dependencies from `package.json` file
6+
7+
## [1.4.0] 2020-03-12
8+
### Dependencies Updates
9+
- Updated all out of date dependencies from `package.json` file
10+
- Add `API_KEY` file
11+
- Add new structure for google maps plugin
12+
13+
## [1.3.2] 2019-12-13
14+
### Dependencies Updates
15+
- Updated all out of date dependencies from `package.json` file
16+
- The version is now `v1.3.2` to have the same versioning line with the PRO version of this product
17+
18+
## [1.2.1] 2019-06-14
19+
### Dependencies Updates, Vue Material Update
20+
- Updated all out of date dependencies from `package.json` file
21+
- The framework `Vuematerial.io` was updated to the latest beta version `1.0.0-beta-11`
22+
23+
## [1.2.0] 2019-04-30
24+
### Dependencies Updates
25+
- Updated all out of date dependencies from `package.json` file
26+
27+
## [1.1.0] 2019-02-08
28+
### Dependencies Updates, Improvements
29+
- Updated all out of date dependencies from `package.json` file
30+
- Removed all `to=""` and replaced with `href=""` props from non router-link components for avoid this error `[Vue warn]: Error in render: "TypeError: Cannot read property 'options' of undefined"`
31+
- Changed links from footer
32+
33+
## [1.0.3] 2018-11-26
34+
### Bug Fixing
35+
- Fixed error `[Vue warn]: Error in render: "TypeError: Cannot read property 'options' of undefined"`
36+
37+
## [1.0.2] 2018-11-19
38+
### Plugin Updates, BugFixing
39+
- Updated all `dependencies` and `devDependencies` to the latest versions
40+
- Cleaned `package.json` file
41+
- Removed all lint warnings and errors
42+
- Github issues fixed
43+
- Other bug fixes
44+
45+
## [1.0.1] 2018-07-13
46+
### BugFixing and Updates
47+
- updated all the npm packages
48+
- scroll issue on mobile devices fixed
49+
- added button `Upgrade to PRO` in the sidebar
50+
- another small bug fixes
51+
52+
## [1.0.0] 2018-05-03
53+
- Initial Release

ISSUE_TEMPLATE.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!--
2+
IMPORTANT: Please use the following link to create a new issue:
3+
4+
https://www.creative-tim.com/new-issue/vue-material-dashboard
5+
6+
**If your issue was not created using the app above, it will be closed immediately.**
7+
-->
8+
9+
<!--
10+
Love Creative Tim? Do you need Angular, React, Vuejs or HTML? You can visit:
11+
👉 https://www.creative-tim.com/bundles
12+
👉 https://www.creative-tim.com
13+
-->

0 commit comments

Comments
 (0)