# 移动端vant模版 **Repository Path**: wiicy/mobile_vant_template ## Basic Information - **Project Name**: 移动端vant模版 - **Description**: 移动端常见的插件、规范、样式等,vue模版 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2020-07-22 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # vue-demo 基于 vue-cli4.x vue2.x 和 vant 的一个 vue 项目模版 ## 目录 ``` . ├── README.md ├── babel.config.js ├── package.json ├── public │   ├── favicon.ico │   └── index.html ├── src │   ├── App.vue │   ├── api │   ├── assets │   ├── components │   ├── main.js │   ├── router │   ├── store │   ├── utils │   └── views └── vue.config.js ``` > 生成目录结构命令 `tree -L 2 -I "node_modules"` ## 项目命令 > 重要提醒!由于 vue-cli4.x 脚手架使用 cnpm 源可能会有问题,对于 node-sass 不能使用 npm 安装已经在 `.npmrc` 文件中做了处理。安装过程尽可能不使用 cnpm可参考 [https://github.com/lmk123/blog/issues/28](https://github.com/lmk123/blog/issues/28) ``` # 安装依赖 npm install ``` ``` # 本地运行 npm run serve ``` ``` # 更新打包 npm run build ``` ``` # eslint修复 npm run lint ```