Added actor alphanetic and gender filters.

This commit is contained in:
2020-02-09 05:30:10 +01:00
parent cde290fbd7
commit 4eb57b4a91
9 changed files with 217 additions and 9 deletions

View File

@@ -53,6 +53,17 @@ const routes = [
{
path: '/actors',
component: Actors,
redirect: {
name: 'actors',
params: {
gender: 'female',
letter: 'all',
},
},
},
{
path: '/actors/:gender/:letter',
component: Actors,
name: 'actors',
},
{