@Stanley , in your case, you can add “flex” class to the wrapper q-card’s div, and add class “full-width” or “fit” to the q-card tag.
https://codepen.io/mvelikoff/pen/zYObWxW
Best posts made by mvelikoff
-
RE: [Solved] [V1] QCard Layout - How to get QCards to be the same height?
-
RE: vuex getters actions
try this.$store.getters[‘MODULE_NAMESPACE/GETTER_NAME’].
example: this.$store.getters[‘auth/getUsername’]
Latest posts made by mvelikoff
-
RE: DateUtils getMin/MaxDate is not working
Hi @ckoeste1,
I think there is a mistake on the documentation or on the function implementation on dateUtils getMinDate and getMaxDate methods.
If you pass “dates” parameter with spead (…) it works.
In your case:
let min = date.getMinDate(…dates) // min is 2017-5-20
let max = date.getMaxDate(…dates) // max is 2017-6-26You can check more detailed on https://codepen.io/mvelikoff/pen/pozBzOy
-
RE: [Solved] [V1] QCard Layout - How to get QCards to be the same height?
@Stanley , in your case, you can add “flex” class to the wrapper q-card’s div, and add class “full-width” or “fit” to the q-card tag.
https://codepen.io/mvelikoff/pen/zYObWxW -
RE: vuex getters actions
try this.$store.getters[‘MODULE_NAMESPACE/GETTER_NAME’].
example: this.$store.getters[‘auth/getUsername’]