[Vuejs]-How to fit components with equal width horizontally?

0👍

If I understand your question correctly, you want to have the “Outro Mes” radio button, the “Mes” selector, and the “Ano” selector all in the same row.

Your code is doing that right now for window sizes larger than “sm” in the vuetify grid system. When I run it on my machine, I get this:

Window size larger than “sm”

Window size “sm”

If you want to have the radio button on the same row as the selects at all times, even when the window size is “sm”, then you simply need to change each column to [cols=”4″].

If I’m not understanding your question correctly, please leave a comment with clarification.

Leave a comment