# vue2.6.11.example **Repository Path**: dd0519_admin/vue2.6.11.example ## Basic Information - **Project Name**: vue2.6.11.example - **Description**: vue2.6模板 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-08-01 - **Last Updated**: 2025-09-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 环球彩信 ## 技术栈 vue3.0 + vant2 + vuex + vue-router + webpack + ES6/7 + less + flex ## 项目运行 #### 注意:由于涉及大量的 ES6/7 等新属性,node 需要 6.0 以上版本 ``` npm install npm run serve npm run build ``` # 项目目录结构 ``` ├── public // 静态资源 │   ├── index.html // 入口html文件 ├── src │   ├── assets // 一些js、css文件 │   ├── components // 公共组件 │   ├── router // 路由配置 │   ├── store // vuex的状态管理 │   ├── views │   │   ├── users // 登录页面 │   │   ├── mobile // H5端页面 │   │   ├── web // PC端页面 │   │   ├── Home.vue // 无用 │   │   ├── Layout.vue // PC、H5切换入口 │   ├── App.vue // 页面入口文件 │   └── main.js // 程序入口文件,加载各种公共组件 ├── utils // 公共配置文件 ├── tests // 测试用例 ├── babel.config.js // es6/7转es5 ├── postcss.config.js // 浏览器兼容配置 └── vue.config.js // 打包优化配置文件 ```