cookie的相关操作
- 为什么用?
- 减少项目之间重复的代码
- 公共方法抽离
- 使用方便
- 模块化,用哪个,引哪个
- 易于维护
- 怎么用? 在vue中可以使用,像挂载其他ui库一样。
import cookie from 'em-cookie';
Vue.use(VueCookie);
// 普通用法
console.log(window.$cookie.get('aaa'));
// vue 用法
console.log(this.$cookie.get('aaa'));
- 安装
- npm
npm install em-cookie
- yarn
yarn add em-cookie