mirror of
https://github.com/Radiquum/AniX.git
synced 2025-05-17 10:19:40 +05:00
feat: add favorites page
This commit is contained in:
parent
484148ada6
commit
28efc5a98c
10 changed files with 177 additions and 36 deletions
app/pages
22
app/pages/common.js
Normal file
22
app/pages/common.js
Normal file
|
@ -0,0 +1,22 @@
|
|||
export const sort = {
|
||||
descendingIcon: "material-symbols--sort",
|
||||
ascendingIcon: "[transform:rotateX(180deg)] material-symbols--sort",
|
||||
values: [
|
||||
{
|
||||
name: "Сначала новые",
|
||||
value: "adding_descending",
|
||||
},
|
||||
{
|
||||
name: "Сначала старые",
|
||||
value: "adding_ascending",
|
||||
},
|
||||
{
|
||||
name: "А-Я",
|
||||
value: "alphabet_descending",
|
||||
},
|
||||
{
|
||||
name: "Я-А",
|
||||
value: "alphabet_ascending",
|
||||
},
|
||||
],
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue