<div v-for="(todo, n) in todos">
<i class="CLICK-ME"></i>
<li class="CHANGE-COLOR">
{{ todo.name }}
</li>
</div>
like
$ (document) .on ('click', '.CLICK-ME', function () {$ (this). css ("background-color", "red") ;});
or
$ (документ) .on ('click', '.CLICK-ME', function () {$ (this) .addClass ('red');});