I'm currently using the following code to set a 3-hour expiry for my vue-cookie:
VueCookie.set('S3ID', getS3ID, 3);
However, it seems that this function is actually setting the cookie expiry time as 3 days instead of 3 hours. Can anyone explain why this might be happening?