[Vuejs]-Vue/Vuetify wrapper component of input doesn't inherit `hide-details` parameter

0👍

It happens because hide-details is undefined by default, because it can be boolean or string.

You need to use the following syntax:

<mywrapper label="Label" hide-details="true"></mywrapper>

Leave a comment