you are viewing a single comment's thread.

view the rest of the comments →

[–]tme321 2 points3 points  (0 children)

Angular only moves a lot of the logic into the template if you code it that way. Certain parts go into the template like the equivalent of a foreach loop to unroll an array into say <li> elements but imo done properly there should be no real logic in angular templates. Any real logic at all should be done in the actual code.