It might be a bit over engineering, but so far I can't come up with any other solution. I retrieve a model via axios. The model has a title (English) and may have (or may NOT) its own localized alternative title. The code below is working, but it prepends the localized title with '@' for some reason. So my question is how will I get rid of this '@'?
<label>
<span v-if="(ques.questionLocalized && ques.questionLocalized.{{\App::getLocale()}})">
@{{ques.questionLocalized.<?php echo \App::getLocale();?>}}
</span>
<span v-else>@{{ques.question}}</span>
<small>({{__('ux.required')}})</small><span class="req">*</span>
</label>


.bladeor.vue?@?