I am using an API(MySportsFeeds.com) that returns an object with property names that contain the characters # and @ in them. I get a Vue error message:
"- invalid expression: illegal character in _s(item.stats.Wins.@abbreviations) Raw expression: {{ item.stats.Wins.@abbreviations}}
when trying to access these object properties.
Here is an example Vue template code snippet:
 <div v-for="value in props_league_standings">
            <p class="box-score-team" v-for="item in value.teamentry"> 
               <span class=box-score-team>{{ item.stats.Wins.@abbreviations}}</span>
            </p>
 </div>
Does anyone know how I can access these properties with special characters in their names in the Vue template. Thanks in advance
