Skip to content

Commit 56d2348

Browse files
committed
docs: change vueAdmin-template => vue-admin-template
1 parent 222f1c4 commit 56d2348

File tree

3 files changed

+22
-22
lines changed

3 files changed

+22
-22
lines changed

README-zh.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# vueAdmin-template
1+
# vue-admin-template
22

33
> 这是一个 极简的 vue admin 管理后台 它只包含了 Element UI & axios & iconfont & permission control & lint,这些搭建后台必要的东西。
44
5-
[线上地址](http://panjiachen.github.io/vueAdmin-template)
5+
[线上地址](http://panjiachen.github.io/vue-admin-template )
66

77
## Extra
88

9-
如果你想要根据用户角色来动态生成侧边栏和 router,你可以使用改分支[permission-control](https://github.com/PanJiaChen/vueAdmin-template/tree/permission-control)
9+
如果你想要根据用户角色来动态生成侧边栏和 router,你可以使用改分支[permission-control](https://github.com/PanJiaChen/vue-admin-template /tree/permission-control)
1010

11-
本项目基于`webpack4`开发,若还想使用`webpack3`开发,请使用该分支[webpack3](https://github.com/PanJiaChen/vueAdmin-template/tree/webpack3)
11+
本项目基于`webpack4`开发,若还想使用`webpack3`开发,请使用该分支[webpack3](https://github.com/PanJiaChen/vue-admin-template /tree/webpack3)
1212

1313
## 相关项目
1414

@@ -28,7 +28,7 @@
2828

2929
```bash
3030
# Clone project
31-
git clone https://github.com/PanJiaChen/vueAdmin-template.git
31+
git clone https://github.com/PanJiaChen/vue-admin-template .git
3232

3333
# Install dependencies
3434
npm install
@@ -52,11 +52,11 @@ npm run build --report
5252

5353
### Element-Ui 使用 cdn 教程
5454

55-
首先找到 `index.html` ([根目录下](https://github.com/PanJiaChen/vueAdmin-template/blob/element-ui-cdn/index.html))
55+
首先找到 `index.html` ([根目录下](https://github.com/PanJiaChen/vue-admin-template /blob/element-ui-cdn/index.html))
5656

5757
引入 Element 的 css 和 js ,并且引入 vue 。因为 Element-Ui 是依赖 vue 的,所以必须在它之前引入 vue 。
5858

59-
之后找到 [webpack.base.conf.js](https://github.com/PanJiaChen/vueAdmin-template/blob/element-ui-cdn/build/webpack.base.conf.js) 加入 `externals` 让 webpack 不打包 vue 和 element
59+
之后找到 [webpack.base.conf.js](https://github.com/PanJiaChen/vue-admin-template /blob/element-ui-cdn/build/webpack.base.conf.js) 加入 `externals` 让 webpack 不打包 vue 和 element
6060

6161
```
6262
externals: {
@@ -71,12 +71,12 @@ externals: {
7171
如图:
7272
![demo](https://panjiachen.github.io/images/element-cdn.png)
7373

74-
**[具体代码](https://github.com/PanJiaChen/vueAdmin-template/commit/746aff560932704ae821f82f10b8b2a9681d5177)**
74+
**[具体代码](https://github.com/PanJiaChen/vue-admin-template /commit/746aff560932704ae821f82f10b8b2a9681d5177)**
7575

76-
**[对应分支](https://github.com/PanJiaChen/vueAdmin-template/tree/element-ui-cdn)**
76+
**[对应分支](https://github.com/PanJiaChen/vue-admin-template /tree/element-ui-cdn)**
7777

7878
## License
7979

80-
[MIT](https://github.com/PanJiaChen/vueAdmin-template/blob/master/LICENSE) license.
80+
[MIT](https://github.com/PanJiaChen/vue-admin-template /blob/master/LICENSE) license.
8181

8282
Copyright (c) 2017-present PanJiaChen

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
# vueAdmin-template
1+
# vue-admin-template
22

33
> A minimal vue admin template with Element UI & axios & iconfont & permission control & lint
44
5-
**Live demo:** http://panjiachen.github.io/vueAdmin-template
5+
**Live demo:** http://panjiachen.github.io/vue-admin-template
66

7-
[中文文档](https://github.com/PanJiaChen/vueAdmin-template/blob/master/README-zh.md)
7+
[中文文档](https://github.com/PanJiaChen/vue-admin-template /blob/master/README-zh.md)
88

99
## Build Setup
1010

1111
```bash
1212
# Clone project
13-
git clone https://github.com/PanJiaChen/vueAdmin-template.git
13+
git clone https://github.com/PanJiaChen/vue-admin-template .git
1414

1515
# Install dependencies
1616
npm install
@@ -33,9 +33,9 @@ https://panjiachen.gitee.io/vue-element-admin-site/zh/guide/
3333

3434
## Extra
3535

36-
If you want router permission && generate menu by user roles , you can use this branch [permission-control](https://github.com/PanJiaChen/vueAdmin-template/tree/permission-control)
36+
If you want router permission && generate menu by user roles , you can use this branch [permission-control](https://github.com/PanJiaChen/vue-admin-template /tree/permission-control)
3737

38-
This project is based on `webpack4` development. If you want to use `webpack3` development, please use this branch [webpack3](https://github.com/PanJiaChen/vueAdmin-template/tree/webpack3)
38+
This project is based on `webpack4` development. If you want to use `webpack3` development, please use this branch [webpack3](https://github.com/PanJiaChen/vue-admin-template /tree/webpack3)
3939

4040
## Related Project
4141

@@ -45,11 +45,11 @@ This project is based on `webpack4` development. If you want to use `webpack3` d
4545

4646
### Element-Ui using cdn tutorial
4747

48-
First find `index.html`([root directory](https://github.com/PanJiaChen/vueAdmin-template/blob/element-ui-cdn/index.html))
48+
First find `index.html`([root directory](https://github.com/PanJiaChen/vue-admin-template /blob/element-ui-cdn/index.html))
4949

5050
Import css and js of `Element`, and then import vue. Because `Element` is vue-dependent, vue must be import before it.
5151

52-
Then find [webpack.base.conf.js](https://github.com/PanJiaChen/vueAdmin-template/blob/element-ui-cdn/build/webpack.base.conf.js)
52+
Then find [webpack.base.conf.js](https://github.com/PanJiaChen/vue-admin-template /blob/element-ui-cdn/build/webpack.base.conf.js)
5353
Add `externals` to make webpack not package vue and element.
5454

5555
```
@@ -67,12 +67,12 @@ And you can use `npm run build --report` to see the effect
6767
Pictured:
6868
![demo](https://panjiachen.github.io/images/element-cdn.png)
6969

70-
**[Detailed code](https://github.com/PanJiaChen/vueAdmin-template/commit/746aff560932704ae821f82f10b8b2a9681d5177)**
70+
**[Detailed code](https://github.com/PanJiaChen/vue-admin-template /commit/746aff560932704ae821f82f10b8b2a9681d5177)**
7171

72-
**[Branch](https://github.com/PanJiaChen/vueAdmin-template/tree/element-ui-cdn)**
72+
**[Branch](https://github.com/PanJiaChen/vue-admin-template /tree/element-ui-cdn)**
7373

7474
## License
7575

76-
[MIT](https://github.com/PanJiaChen/vueAdmin-template/blob/master/LICENSE) license.
76+
[MIT](https://github.com/PanJiaChen/vue-admin-template /blob/master/LICENSE) license.
7777

7878
Copyright (c) 2017-present PanJiaChen

config/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ module.exports = {
5757
* then assetsPublicPath should be set to "/bar/".
5858
* In most cases please use '/' !!!
5959
*/
60-
assetsPublicPath: '/vueAdmin-template/', // If you are deployed on the root path, please use '/'
60+
assetsPublicPath: '/vue-admin-template /', // If you are deployed on the root path, please use '/'
6161

6262
/**
6363
* Source Maps

0 commit comments

Comments
 (0)