# car_map **Repository Path**: wangscript/car_map ## Basic Information - **Project Name**: car_map - **Description**: 车辆监控管理后台 - **Primary Language**: JavaScript - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2019-07-24 - **Last Updated**: 2024-06-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # car_map > VUE 车辆管理后台 项目 ``` bash ├─src | ├─App.vue 项目入口vue文件 | ├─main.js 项目入口主JS | ├─router 路由目录 | | └index.js 路由文件 | ├─pages vue业务组件目录 | | ├─passport 通行目录 | | | └login.vue 登陆文件 | | ├─common 业务公共组件目录 | | | └manage.vue | ├─libs 核心公共JS目录 | | └util.js | ├─components 公共组件目录 | ├─assets 静态资源目录 | | ├─logo.png | | ├─style 样式目录 | | | ├─passport | | | | └login.less | | | ├─common | | | | └customize.less | | ├─images 图片目录 | | | └login_bg.jpg | | ├─font 字体目录 ├─config | ├─dev.env.js | ├─index.js | └prod.env.js ``` ### 约束说明 + 方法命名 全前小写后大写的驼峰命名法 + 提交后台数据 data key 根据业务需要进行大小写 + 所有结尾必须加分号 + 对象KEY VALUE 最后一个不得加,逗号 + 数组对象,逗号分隔必须空格 + 禁止定义变量不使用 + 逗号后是注释不能有空格的 + 对象最后一个key value 不能有逗号 ## Build Setup ``` bash # install dependencies npm install # serve with hot reload at localhost:1688 npm run dev # build for production with minification npm run build # build for production and view the bundle analyzer report npm run build --report ``` For detailed explanation on how things work, checkout the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader).