I am trying to integrate a module in PrestaShop with the help of AngularJS to reduce the work in modifying this framework for ecommerce. The detail is that at the moment of wanting to access the variables of my JS model, apparently there are problems when wanting to print them with {{}}
for example
<div ng-app="">
<p>Name : <input type="text" ng-model="name"></p>
<h1>Hello {{name}}</h1>
</div>
what is in {{name}}
does not work, however I have tried this:
<p>Input something in the input box:</p>
<p>Name : <input type="text" ng-model="name" placeholder="Enter name here"> </p>
<input type="text" ng-model="name" placeholder="Enter name here">
and with that I rule out that the Angular is not working since in this one it worked perfectly Is there any way to include that instruction in the tpl without affecting its operation?