I'm trying to hide table columns in vue material when the window gets smaller.
Like so:
<md-table-cell class="md-layout-item md-medium-hide" md-label="Job Title" md-sort-by="title">{{ item.title }}</md-table-cell>
But as you can see on this code sandbox
https://codesandbox.io/s/zz6v9j7vm4
The "job title" column stays even though the rows are gone.
How can I also make the row headers disappear?
Maybe it's not the best solution, but it work for me.