I encountered an issue with a .vue file that contains an anchor tag as shown below:
<a class="login_class" :href="loginUrl">Use Universal Login</a>
When running Sonar, it raises a warning regarding the :href attribute:
Ensure that bypassing Vue's built-in sanitization is safe in this context
What would be the best approach to resolve this concern?