所以我一直在使用 Buefy 作為這個新專案的 UI 庫,而且我有 Vuetify 背景。
我想使用 Buefy 實現的目標是:
<div :class="{ 'ml-2': (condition to apply the class to mobile breakpoint) }" > ...
在 Vuetify 中我會寫如下程式碼:
<div :class="{ 'ml-2': $vuetify.breakpoint.mobile, }" > ...
Buefy 中有等效的解決方案嗎?