@s-molinari. I simply restarted the dev server and everything is fine

Best posts made by syflex
-
RE: [Solved] [preFetch: true] I have error when I add the preFetch: true on quasar.conf.js
-
RE: Quasar v1.0 beta1 in a few days
@rstoenescu @s-molinari. Great work. Thank you for your time
-
RE: Redirect to page after action
This.$router.push("/home") or
This.$router.push({name: “home”})Good luck
-
[Solved] [preFetch: true] I have error when I add the preFetch: true on quasar.conf.js
i have error when i enable the preFetch on quasar.conf.js
-
RE: Quasar v1.0 beta has arrived
Quasar framework is an amazing framework and you guys just delivered a crazily awesome tool For developers.
Thank you quasar team and community
-
RE: [laravel-echo] can't get laravel-echo to work properly with Quasar
@metalsadman @Hawkeye64 yes it works. i will give more info soon
thank you
-
RE: reset state in vuex
export const clear_errors = (state, errors) => {
state.errors = “”
}is the quickest way to go and just commit it when you need to clear state.errors
Latest posts made by syflex
-
RE: Laravel + Quasar 1.0 with Quasar CLI
Yeah you can use quasar UMD/standalone. Look up https://v1.quasar-framework.org/start/umd.
But I sure you quasar cli. Is a great experience, you won’t regret it
-
RE: Quasar v1.0
https://medium.com/quasar-framework/quasar-1-0-reaching-for-the-stars-284e7716625a
According to the release note.
Slimming down
One last and major goal of Quasar 1.0’s component rework was to reduce the complexity of the components themselves. For instance, instead of having a QSearch and QAutocomplete, we now have only QSelect.As for the QInput, you can find it in form component.
-
RE: QUploader model
QUploader is great. U only need to see it with different eyes
What ever u want I can show you just describe what you want in details
-
RE: Laravel + Quasar 1.0 with Quasar CLI
You already have everything you need.
Use laravel as a back-end api and quasar as front-end. And you can deploy spa, pwa, mobile(android,iOS, many more ), windows app and what ever you can think of.
I can show you how to, if you want extra direction.
-
RE: Quasar v1.0 beta has arrived
Quasar framework is an amazing framework and you guys just delivered a crazily awesome tool For developers.
Thank you quasar team and community
-
RE: Changes in the store are not reflected
please provide your current code workflow for easy solution
-
RE: reset state in vuex
export const clear_errors = (state, errors) => {
state.errors = “”
}is the quickest way to go and just commit it when you need to clear state.errors
-
RE: Quasar v1.0 beta1 in a few days
@rstoenescu @s-molinari. Great work. Thank you for your time
-
RE: reset state in vuex
Create a mutation that call the state object (errors) and reinitialise it to null or " " .
Then commit the mutation on created hook of save and update form page.
I will write you the code if you still don’t get it.
-
RE: Redirect to page after action
This.$router.push("/home") or
This.$router.push({name: “home”})Good luck