0👍
You have to provide what are you binding .In your case you are binding a class.So make sure to use v-bind:class=”{‘is-invalid’: error}”
- [Vuejs]-Design: Two Vue Components That Share Similar Sass
- [Vuejs]-Axios not failing on get call in NS VUEJS APP
0👍
This should work. span with invalid-feedback class should be below the select tags.
<div class="dropdown">
<select></select>
<span class="invalid-feedback"> error </ span>
</div>
- [Vuejs]-How to create a favorite list with Vue js. Allowing the user to select maximun 5 options
- [Vuejs]-Vuejs display Laravel errors in flash component
Source:stackexchange.com