This is Vue.js template
<strong>{{userdata.phone}}</strong>
When userdata.phone == null or userdata.phone == undefined, I would like to show space. for example
<strong> {{ userdata.phone | !null | !undefined }} </strong>
Is it possible? And in this case how do that?
<strong>{{userdata.location.city + userdata.location.state + userdata.location.country }}</strong>
userdata.locationi.city,state,country can be null or undefined