vue 配置cookie插件

vue

在项目中用到了cookie,记录下使用方法

1、安装vue-cookies

npm install vue-cookies --save

2、main.js配置

import Cookies from 'vue-cookies'

Vue.prototype.$cookie = Cookies //添加到实例

3、使用$cookie

this.$cookie.set("username",this.username)  //存储

this.$cookie.get("username") //获取

this.$cookie.remove("username") //移除

以上是 vue 配置cookie插件 的全部内容, 来源链接: utcz.com/z/378787.html

回到顶部