https://github.com/saucxs/structure_webapp
webApp开发架子,快速搭建webApp相应的页面
https://github.com/saucxs/structure_webapp
vue webapp
Last synced: 2 months ago
JSON representation
webApp开发架子,快速搭建webApp相应的页面
- Host: GitHub
- URL: https://github.com/saucxs/structure_webapp
- Owner: saucxs
- Created: 2018-10-16T09:35:52.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-17T02:35:40.000Z (over 7 years ago)
- Last Synced: 2025-01-28T10:35:06.748Z (over 1 year ago)
- Topics: vue, webapp
- Language: JavaScript
- Size: 141 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# structure_webApp
webApp开发架子,快速搭建webApp相应的页面。可以直接把这个作为基础的wepApp开发的架子,然后根据不同的项目业务需求加上相应的模块。
## 截屏

## 项目运行
```
git clone https://github.com/saucxs/structure_webApp.git
cd structure_webApp
npm install
npm run dev(本地运行 访问:http://localhost:8088)
npm run build (部署上线 生成的dist文件夹放到服务器中即可:需要配置代理,如使用nginx,可参考下面问题中的配置)
```
## 说明
#### 1、跳转页面后active标记
```
最开始使用url.indexOf来处理,后来直接发现vue-router的exact属性更好用。
```