如何在vue.js中设置cookie?

在vuejs中设置Cookie的最佳做法是什么?我使用SSR,所以我想我不能使用localStorage。

最好的方法是什么?

达蒙米亚樱2020/03/16 15:33:50

最好使用mounted方法

mounted: function() { 
    document.cookie = "username=John Doe";
}
飞云卡卡西2020/03/16 15:33:50

您可以使用vue-cookievue-cookies npm软件包。您可以在创建的方法中设置Cookie。

created() {
   this.$cookie.set("keyName", keyValue, "expiring time")
}