1.0.0 • Published 4 years ago

pc_equestrian v1.0.0

Weekly downloads
-
License
-
Repository
-
Last release
4 years ago

pc_equestrian

Project setup

yarn install

Compiles and hot-reloads for development

yarn run serve

Compiles and minifies for production

yarn run build

Run your tests

yarn run test

Lints and fixes files

yarn run lint

Customize configuration

See Configuration Reference.

目录说明

│  .env									   通用环境变量
│  .env.development						   开发环境
│  .env.test								  测试环境
│  .env.production							生产环境
│  .gitignore								 git上传需要或略的配置
│  babel.config.js							使用一些预设
│  package.json							   项目描述及依赖
│  README.md								  项目说明
│  vue.config.js							  可选配置文件(webpack)
│  yarn.lock
├─node_modules								项目依赖
├─public									  静态资源(类似vue-cli2.x static)
│      favicon.ico							网站图标
│      index.html							 页面入口文件
└─src										 源码
    │  App.vue								页面入口
    │  main.js								程序入口
    │  router.js						  	路由配置
    │  store.js							   vuex状态管理配置
    │  permission.js					   权限许可(状态拦截、守卫)
    ├─filters                              过滤器
    ├─assets
    │      logo.png
    ├─components							  vue公共组件
    │      HelloWorld.vue
    └─views								   页面目录
        │  Home.vue						   首页
        ├─member						  	会员中心
        ├─horse							   马匹中心
        ├─news						 	   资讯公告
        ├─match						 	  赛事中心
        ├─exam						 	   通级中心
        ├─training						    培训中心
        ├─search						 	 搜索相关
        ├─personal						    个人中心
        ├─account						 	账户相关(登录、注册、忘记密码等)
        ├─integral						    积分榜
        └─end