How do I add the tab in Angularjs? I realized that doing it in a normal way and clicking on a tab will direct me to the main page (the one I order when there is not one)
Do I have to create a driver? How would that be?
<section class="central">
<ul class="res nav nav-tabs">
<li class="active"><a data-toggle="tab" href="col">NORMAL</a></li>
<li><a data-toggle="tab" href="rpam">PRIORITARIO</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane fade in active" id="#col">
<div class="contenido" id="contenido1">
jsjsjs
</div>
</div>
<div class="tab-pane fade" id="#cal">
<div class="contenido" id="contenido2">
ojojo
</div>
</div>
</div>