12345
import Cookies from 'js-cookie'// 获取到cookie中key对应的value值return Cookies.get("key")// 置cookie中key对应的值为valuereturn Cookies.set("key", "value")