Answer the question
In order to leave comments, you need to log in
How to connect in Jade to use AngularJS?
In general, the problem is understandable at first glance, but I can’t find how to solve even in Google
. The bottom line is that I set up the gulp + browser sync project to work with jade / stylus in the project, you need to use angular.
With directives, everything seems to be clear and simple html(ng-app="detboxAdminApp")
, but how to deal with
input(type='text', ng-model="word")
{{world}}
Answer the question
In order to leave comments, you need to log in
input(type='text', ng-model="word")
| {{world}}
try like this:
input(type='text', ng-model="word")
| {{world}}
input(type='text', ng-model="word").
{{world}}
input(type='text', ng-model="word")
="{{world}}"
input(type='text', ng-model="word", value="{{world}}")
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question