Use ||(or) in v-if
[issue link]I need, that component
<div v-if="brandsOrBrand">
<AlphabetSearch/>
</div>
in script
computed: {
brandsOrBrand() {
return this.$route.fullPath == '/brands' || this.$route.fullPath == '/brand';
}