// inside of a Vue file this.$q.cookies.set('cookie_name', cookie_value, options)
Option expires
expires: 10
Define lifetime of the cookie. Value can be a Number which will be interpreted as days from time of creation or a Date object. If omitted, the cookie becomes a session cookie.
Option path
path: '/'
Define the path where the cookie is valid. By default the path of the cookie is the path of the page where the cookie was created (standard browser behavior). If you want to make it available for instance across the entire domain use path: ‘/‘. Default: path of page where the cookie was created.
Option domain
domain: 'quasar-framework.org'
Define the domain where the cookie is valid. Default: domain of page where the cookie was created.
Option secure
secure: true
If true, the cookie transmission requires a secure protocol (HTTPS) and will NOT be sent over HTTP. Default value is false.
Remove a Cookie
// outside of a Vue file import { Cookies } from'quasar'
Cookies.remove('cookie_name')
// inside of a Vue file this.$q.cookies.remove('cookie_name')