I'm trying to add {{}} for angular {{}} to Jade. In html you do this
<p>{{ whatever }}</p>
In jade, my understanding was:
p {{ whatever }}
But it is not working. Any insight on how to add the double curly brackets to Jade so it display the information from Angular (react or vue, they all work the same way)
I tried
p {{ }}
p
|{{ }}
p
= {{ }}
Any Jade ninja out there?
p {{vueData}}
, it works fine. Maybe post your compilation error here?