Is there a way to handle word declension based on the number of items in VueJS? For example, displaying "0 skins", "1 skin", "2 skins", "3 skins", "4 skins", "5 skins", and so on.
I currently have a basic code snippet with hardcoded text:
<div class="progress__text"> {{ Object.keys(bets).length }} / 50 skins</div>
As a beginner in VueJS, I haven't been able to find a solution for this specific issue. Any guidance or advice would be greatly appreciated!