Hello guys!
I created a starter kit that uses the JSON Web Token authentication system.
You can find the code for frontend here and for the backend here
Hello guys!
I created a starter kit that uses the JSON Web Token authentication system.
You can find the code for frontend here and for the backend here
Updated frontend on latest quasar version ( 0.13.9 )
Updated backend on latest Laravel version (5.4)
Added refresh token functionality
Updated on latest version
Updated on latest version
Updated frontend on latest quasar version ( 0.13.9 )
Updated backend on latest Laravel version (5.4)
Added refresh token functionality
Hello,
I want to make an ajax request after submitting the 2nd step and use the results on my 3rd step.
Any idea how i can do this?
Hello guys,
I have an error when trying to close popovers.
my markup is this: http://pastebin.com/BQ39b0Mk
when clicking on the buttons of the popover i am getting the following error:
Uncaught TypeError: _vm.$refs.popover.close is not a function at Object.click [as fn] (eval at 243 (1.e2343b3….hot-update.js:6), <anonymous>:54:29) at HTMLButtonElement.eval (eval at <anonymous> (app.js:794), <anonymous>:2222:16)
thanks @rstoenescu !! It works now ! Maybe we must update the documentation too about that .?
Hello guys!
I created a starter kit that uses the JSON Web Token authentication system.
You can find the code for frontend here and for the backend here
Hello !! I am trying to use the new Directive “v-go-back”, but i am getting the following error:
[Vue warn]: Invalid expression. Generated function body: /
I am using that on my menu like that:
<quasar-drawer-link v-go-back="/" icon=“exit_to_app”>
Logout
</quasar-drawer-link>
My routes:
let routes = {
// Not found
‘*’: {
component: load(‘error404’)
},
// Index
‘/’: {
name: ‘index’,
component: load(‘index’)
},
‘/login’: {
name: ‘login’,
component: load(‘auth/login’)
},
‘/register’: {
name: ‘register’,
component: load(‘auth/register’)
},
}
Any idea ?
Thanks!!