标签:remove cookies col 设置 rem port span save this
npm install vue-cookies --save
使用
import Vue from ‘Vue‘ import VueCookies from ‘vue-cookies‘ Vue.use(VueCookies)
设置cookies
this.$cookies.set(keyName, time)
获取cookies
this.$cookies.get(keyName)
删除cookies
this.$cookies.remove(keyName)
查看是否存在
this.$cookies.isKey(keyName)
获取全部
this.$cookies.keys()
标签:remove cookies col 设置 rem port span save this
原文地址:https://www.cnblogs.com/ronle/p/11008022.html