• 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
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • tmdb_test
  • pages
  • movies
  • [id]
  • index.vue
  • Bruno Predot's avatar
    Ajout composant SkeletonMovieDetailLoader. · 80a65ddf
    80a65ddf Browse Files
    Bruno Predot authored 2025-04-25 15:01:30 +0200
index.vue 296 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<script setup lang="ts">

import SkeletonMovieDetailLoader from "~/components/ui-components/skeletonMovieDetailLoader.vue";
</script>

<template>
  <section>
    <!-- Skeleton loader pendant le chargement -->
    <skeleton-movie-detail-loader />
  </section>
</template>

<style scoped>

</style>