angular-virtual-dom
angular-virtual-dom copied to clipboard
my directives are not working inside a tbody with v-dom
I have a structure like this:
<tbody v-root="vm.list">
<tr v-repeat="item in vm.list" >
<td is-permited permission-required='1' module='{{vm.currentModule}}' class="info" >
</tr>
</tbody>
but aparently my "is-permited" directive is not beeing called Out of the v-dom it works fine. how can i make it work?