v-col xs not working
vuetify@2.2.11で v-col xsが動かない。
ドキュメント上には xs が存在するが、内部的にはcolsへ置き換わっている
Why was "xs" changed to "cols", but "sm" and "md" still work? Also, the documentation still tells people to use "xs". This makes zero sense. Either changing "xs" to "cols" was a mistake, or, If it was intentional, the documentation would reflect the change. This cost a lot of time to figure out.
【google訳】:「xs」が「cols」に変更されたのに、「sm」と「md」はまだ機能するのはなぜですか?また、ドキュメンテーションはまだ「xs」を使用するように人々に告げています。これは意味がありません。「xs」を「cols」に変更するのは間違いでした。または、意図的なものであれば、ドキュメントに変更が反映されます。これを理解するには多くの時間がかかりました。
実際の動作
xs: 設定値は反映されず、無視される
<v-col xs="6">
cols に設定すると期待した動きになる
<v-col cols="6">


