1
I am working with Aquivos . jade and using ng-repeat from Angularjs 1.5.8. I cannot pass a {{$index}} as a parameter in a mixin. This parameter is a string that defines an ng-model within the mixin.
Ex.:
.row(ng-repeat="atendimento in cadastro.atendimento")
+checkbox("cadastro.perfil[{{$index}}].nome", true, null)
Error occurs in the keys "{{ }}" and seems to be related by being inside the brackets '[ ]'. If you send only "{{$index}}", it works normally, as expected.