Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Bruno Predot
/
tmdb_test
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Bruno Predot
2025-04-24 16:08:26 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
dde00afd93d02b52d5c8ef8e6e8f542908196c93
dde00afd
1 parent
272a713e
Modification de la query pour classement par popularité.
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
components/MoviesList.vue
components/MoviesList.vue
View file @
dde00af
...
...
@@ -22,7 +22,7 @@ const totalPages = ref(0);
//#region --Computed--.
const movies = computed(() => {
return useRepo(Movie).
all
() as unknown as MovieInterface[];
return useRepo(Movie).
query().orderBy("popularity", 'desc').get
() as unknown as MovieInterface[];
});
//#endregion
...
...
Please
register
or
login
to post a comment