One of my cards has a height prop for specifying its height. I want to have different heights for extra-small (xs) and larger sizes, so I implemented the following:
<v-card height="250"> --> this works fine
<v-card :height="[$vuetify.breakpoint.xs ? 450 : '250']">
However, I encountered an error stating that a number or string was expected but an array was provided.
Interestingly, other attributes like :class, :style
, etc. are working correctly without any issues.