Latest posts made by leoprada
-
RE: Issue with breakpoints when used with justify-center
@genyded will try this. Thank you!
-
Issue with breakpoints when used with justify-center
Hi guys. I’m having this issue, i searched in the forum but didn’t find anything related.
I am trying to use justify-center for small screens and justify-end for large screens. Reading the docs i found this:
So I tried to use it as justify-sm-center and justify-lg-end but haven’t got to make it work like so. I made this fiddle for demonstrate it:
https://jsfiddle.net/leoprada/3b40vn6g/
I don’t really know if I am doing something wrong.
(I know how to make it work by my own using CSS but I’d rather using the predefined quasar class, of course)
-
RE: [solved]Problem with q-step & data binding
I found a solution for myself, while i was reading about setters i did a try on smt that read on internet, and definded the v-model=“foo” to the stepper tag, it’s not required but decided to use it and it solved the problem.
-
[solved]Problem with q-step & data binding
I am creating a quiz wizard with q-step, v-for loop and q-inputs. Let’s say user choose 3 questions, it goes into a loop for each and creates its respectively step. When going to the step of the first question it works perfectly; when going to step of second question it apparently works perfectly; but when going to third question’ step, if i go back to question #2’ step data is no longer in its respectively field, nevertheless when I console log the array of the containing data the inserted data is there, correctly inserted, just that the q-input fields don’t load them. Even tho if i go to step #1 THE DATA DO CORRECTLY LOAD IN EACH FIELD :|
You can give a try here: https://jsfiddle.net/leoprada/dbjoLpy1/6/
Am i missing something?
Please help
-
Problem with q-input and type number
Hi, haven’t found a solution to this, when i define the q-input as type number it doesnt update the binding if i ERASE its content. I tryed using watch, @keyup, @change. Issue here is that the binding doesn’t update so vue doesnt detect any changes so doesnt trigger any function.