|
|
1 년 전 | |
|---|---|---|
| .husky | 1 년 전 | |
| public | 1 년 전 | |
| src | 1 년 전 | |
| .env.development | 1 년 전 | |
| .env.production | 1 년 전 | |
| .env.test | 1 년 전 | |
| .eslintignore | 1 년 전 | |
| .eslintrc.js | 1 년 전 | |
| .gitignore | 1 년 전 | |
| .lintstagedrc.json | 1 년 전 | |
| .prettierignore | 1 년 전 | |
| .prettierrc.js | 1 년 전 | |
| README.md | 1 년 전 | |
| package-lock.json | 1 년 전 | |
| package.json | 1 년 전 | |
| postcss.config.js | 1 년 전 | |
| vue.config.js | 1 년 전 | |
| yarn.lock | 1 년 전 |
一个开箱即用,基于 webpack 5 + vue 2 + vant 2 + vuex + vue-router 3 + axios 的H5项目模板。
npm install
npm run serve
npm run build_test
npm run build
npm run lint-fix
├─ .env.xxx // 各环境的配置文件
├─ .eslintrc.js // eslint配置
├─ vue.config.js // vue配置
└─ src
│─ App.vue // 根容器
│─ main.js
│
├─ components // 组件
│
├─ pages // 页面
│
├─ router // 路由
│
├─ services // 接口
│ │
│ │─ request // 封装
│ └─ api // 接口
│
├─ static // 静态资源
│
├─ store // vuex
│
└─ utils // 工具库
│ │ index.js
│ │ loading.js // loading封装
│ │ toast.js // 弹窗封装
│ └─
│......