/em-cookie

cookie的相关操作

Primary LanguageJavaScript

em-cookie

cookie的相关操作

em-cookie NPM downloads Package Quality NPM downloads

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

npm install em-cookie

  • yarn

yarn add em-cookie