You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use bootstrap and it's nice to be able to apply form-control class to each input. Is there a way to set the class on the input itself (not the vue-numeric-input wrapper) ?
The text was updated successfully, but these errors were encountered:
I've ending in same trouble, so I took a look into code. There is no style- or theme-property to solve that, so you have to override components styles by add custom-class to component.
<vue-numeric-input class="my-numeric-input" .../>
<stylelang="scss">
// Use Class-Chain to get higher css-specificity
.vue-numeric-input {
&.my-numeric-input {
// Override styles
}
}
</style>
I use bootstrap and it's nice to be able to apply form-control class to each input. Is there a way to set the class on the input itself (not the vue-numeric-input wrapper) ?
The text was updated successfully, but these errors were encountered: