0👍
✅
There if v-if
you can test condition with it like this
<div class="col-lg-7">
travels
***if country.name which is the selected option equals something then display the below p element***
<p v-if="stc === something"> <!-- 'stc' is v-model to select --->
{% verbatim %}
{{ data.travels }}
{% endverbatim %}
</p>
</div>
Source:stackexchange.com