Coder Social home page Coder Social logo

battlefieldduck / vue-cli-plugin-cookie Goto Github PK

View Code? Open in Web Editor NEW
1.0 2.0 0.0 16 KB

๐Ÿช Vue CLI 3/4 Plugin for handling browser cookies

Home Page: https://www.npmjs.com/package/vue-cli-plugin-cookie

License: MIT License

JavaScript 100.00%
vue vue3 cli cookie cookies vue-cookie vue-cookies vue-cli-plugin vue-cli-4 vue-cli4

vue-cli-plugin-cookie's Introduction

vue-cli-plugin-cookie

๐Ÿช Vue CLI 3/4 Plugin for handling browser cookies

Install

add the cookie plugin with vue-cli or vue-cli UI. import and .use() will be added to main.js automatically

vue add cookie

Example Usage

Get a cookie
this.$cookie.get('jwt_token')
Set a cookie
this.$cookie.set('jwt_token', 'cookie_data')
this.$cookie.set('jwt_token', 'cookie_data', { sameSite: 'Lax', expires: '1Y' }) // set SameSite to Lax, Expires to 1 year
this.$cookie.set('jwt_token', 'One year', { expires: '1Y' })
this.$cookie.set('jwt_token', 'One month', { expires: '1M' })
this.$cookie.set('jwt_token', 'One day', { expires: '1D' })
this.$cookie.set('jwt_token', 'One hour', { expires: '1h' })
this.$cookie.set('jwt_token', 'One minutes', { expires: '1m' })
this.$cookie.set('jwt_token', 'One seconds', { expires: '1s' })
Remove a cookie on the current domain
this.$cookie.remove('jwt_token')
this.$cookie.delete('jwt_token') // alias of remove
this.$cookie.remove('jwt_token', { domain: 'parentdomain.com' }) // remove the parent domain's cookie
Get all cookies
this.$cookie.getAll()

vue-cli-plugin-cookie's People

Contributors

battlefieldduck avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.