Question

How can i get this:

<div>{{ if(location.path !== '/'){ param }}}</div>

How can i print my view data conditionally or anyway run conditions into {{ param }} ?

Was it helpful?

Solution

You have to write expressions to be evaluated inside {{}}.

<div>{{location.path !== '/'? param :""}}</div>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top