pug - How to use angular2 html binding in jade? Specifically a([router-link]=["/Default"]) -
so have issue mentioned in title.
jade compiles
li([router-link]=\["/listen"\]) listen
to
<li [router-link]="/listen">listen</li>
where need
<li [router-link]=["/listen"]>listen</li>
i tried escaping \
won't compile. should use global mixins or there way?
try : li([router-link]='["/listen"]') listen
Comments
Post a Comment