istochnic
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2026-04-11 20:56:32 +10:00
parent 5c1fbacb48
commit c312aefc3a

View File

@@ -27,10 +27,13 @@
@change="onfilterItems($event.target.value)" @change="onfilterItems($event.target.value)"
class="w-1/3 h-12 dark:bg-gray-900 border-slate-100 shadow rounded-xl p-3 ml-2" class="w-1/3 h-12 dark:bg-gray-900 border-slate-100 shadow rounded-xl p-3 ml-2"
> >
<option value="all">Все</option> <option
<option value="time">По времени</option> v-for="category in categories"
<option value="viewed">Просмотренные</option> :key="category"
<option value="status">Избранные</option> :value="category"
>
{{ category }}
</option>
</select> </select>
</div> </div>