updated in .js file
if(condition){
this.wizard.showShippingAddressValidation = true;
}
else{
this.wizard.showShippingAddressValidation = false;
}
update in tpl
{{#if showShippingAddressValidation}}
<div class="order-wizard-shipmethod-module-message">
{{translate 'Warning: Please enter a valid shipping address first'}}
</div>
{{/if}}