Hey nice job! I’m porting the project from v0.17 and everything runs. But I really wanted to thank you due to updated new break-point sizes! Screens are now bigger and bigger, so it made a lot of sense to get rid of 992px point. Thanx a lot!
@rstoenescu & CO great job!
Best posts made by Lou Rectoret
-
RE: @quasar/app 1.0.0-rc.7 released!
-
How to add new Breakpoint xxl?
Hi! I’d like to add a new breakpoint!
By default there are:
$sizes = { xs: 0, sm: 575px md: 767px lg: 991px xl: 1199px }
But I would find useful another one for bigger screens from 1400-1600px, like:
xxl:1199px
Is this possible?
-
how to use Vuex-Router-sync in Quasar project (v0.17)
1- Add vuex-router-sync as a plugin in quasar.conf.js:
2- In plugins folder create a file named :
vuex-router-sync
, and add:import { sync } from 'vuex-router-sync' export default ({ router, store, Vue }) => { sync(store, router) }
3- Check in vue-devtools the Central State:
-
RE: [Solved] Unhandled promise rejection TypeError: "_this.$q.dialog is not a function"
Yeah I happened the same to me. They should specify at the very begining that there are 2 ways of using it: as plugin, and as a component.
Latest posts made by Lou Rectoret
-
RE: Moving our "forum" to Github Discussions
@s-molinari What a pitty!
It was very comfortable place to discuss, in here. I don’t like github for forum porpouses
-
RE: [Vue warn]: Error in callback for watcher "function () { return this._data.$$state }": "Error: [vuex] Do not mutate vuex store state outside mutation handlers."
What is really happening is that you’re referencing your store’s todos to components’s todos to.
You should clone the array instead:I found myself in the same situation but with members, and this solved the issue:
const clonedMembers: [...this.formData.members] // then you call the mutation with the clone
Yes… is a pain in the ass.
I think this is solved in Vue3.
-
RE: How do I use vuex module actions of axios ?
My solutlion as late March 2021:
import Vue from 'vue' import Axios from 'axios' const BASE_URL = process.env.API || 'http://localhost:3000/' const axios = Axios.create({ baseURL: BASE_URL, timeout: 1000, headers: { 'Content-Type': 'application/json' } }) Vue.prototype.$axios = axios export { axios }
-
RE: [SOLVED] Deploy Quasar in Netlify / Broken links when refreshing
I just found the solution!!!
/* / 200
-
RE: Button icons size can not be altered
Shit… I’ve just realized, there’s an inconsistency:
For average q-btn is size, but for q-btn with fab property is padding…@metalsadman I think this could mislead other as it happened to me. I recommend you to consider this improvement
-
RE: [SOLVED] Deploy Quasar in Netlify / Broken links when refreshing
Hey @beets I just tried but it’s not working:
/info http://www.masiesxviure.cat/info /info#objectius http://www.masiesxviure.cat/info#objectius /info#com-funciona /info#com-funciona
I’m lost. I don’t know what is missing
-
RE: [SOLVED] Deploy Quasar in Netlify / Broken links when refreshing
@dobbel your answer is not solving my issue: Broken links.
-
[SOLVED] Deploy Quasar in Netlify / Broken links when refreshing
Hi! I’ve been trying to deploy my app in Netlify.
PROBLEM: I managed to run the app in SPA mode, but links are not working: error 404
QUESTIONS about deployment in NETLIFY: - How can I make the links work in SPA???