Is there a way to display errors using alerts in bootstrap when working with vuejs?
This is an example of the code:
<div v-if="this.getError">
<div v-for="(_errors, key) in this.getError">
<p>{{key.replace('contract_data.','')}}</p>
<ul>
<li v-for="error in _errors">{{error}}</li>
</ul>
</div>
</div>
The corresponding JSON data can be found here: https://i.sstatic.net/AkBmJ.png