Home  >  Q&A  >  body text

Can I achieve full width of table on mobile screens using Vuetify

<p>Can I achieve table "shrinking" on small screens using Vue2 and Vuetify? </p> <p>I have a task where the table needs to remain full width on mobile screens and can be enlarged. Basically implement img -like behavior. </p> <p>I basically need to implement a second screen from this image, but using <code>v-data-table</code> . </p> <p>Although "they are both equally bad", I need the second solution. </p> <p>Does Vuetify have a dedicated solution? </p>
P粉842215006P粉842215006415 days ago574

reply all(1)I'll reply

  • P粉819937486

    P粉8199374862023-08-31 17:09:41

    In vuetify you can use v-data-table and use prop mobile-breakpoint="0"

    <v-data-table
         ...
          mobile-breakpoint="0"
        ...         
        ></v-data-table>

    reply
    0
  • Cancelreply