A Vue.js project
# install dependencies
npm install
# serve with hot reload at localhost:8080
npm run dev
模拟登录信息存储在localStorage:
let user = {};
let token = null
modules/login.js 登录模块局部状态存储
含有对应分发 Action 和 提交 Mutations
modules/cart.js 购物车模块局部状态存储
含有对应分发 Action 和 提交 Mutations
添加到购物车和删除购物车数据操作
modules/production.js 商品数据模块局部状态存储
含有对应分发 Action 和 提交 Mutations
获取商品,商品数量加减操作
index.js 使用vue-resource封装request请求模块
shop.js 定义商品数据信息供使用
使用 vee-validate 进行数据校验,里面涉及初步基本使用,
对应其他规则请移步[github](https://github.com/logaretm/vee-validate)