Im trying to use multiple filters but it's not working here is my code. It's not making it to lowercase it just removes spaces.
EDIT:
For the lowercase I want to use Vue js filter lowercase
<div class="col-md-4" :class="playerBio.current_team | lowercase | removespace ">
JS
removespace( str ) {
if( str ) {
return str.replace(/\s+/g, '').toLowerCase();
}
}