A error list help children improve themselves
# install dependencies
npm install
# serve with hot reload at localhost:8080
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 and docs for vue-loader.
├── App.vue # 项目入口组件
├── service # 存放接口相关文件
├── assets # 存放项目资源文件,比如图片
├── components # 存放通用组件
├── directives # 存放全局自定义指令
├── filters # 存放全局过滤器
├── main.js # 项目入口文件
├── mock # mock数据
├── store # 状态管理
├── styles # 全局样式文件
├── utils # 存放工具函数
└── pages # 存放视图类组件