mirror of
				https://github.com/mmahdium/TBW.git
				synced 2025-11-04 09:09:24 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			622 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			622 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<script setup lang="ts">
 | 
						|
import { useMediaStore } from '@/stores/movies'
 | 
						|
import MovieList from '@/components/MovieList.vue'
 | 
						|
 | 
						|
const store = useMediaStore()
 | 
						|
</script>
 | 
						|
 | 
						|
<template>
 | 
						|
  <div class="container mx-auto px-4 py-12" v-motion-fade-visible-once>
 | 
						|
    <h1
 | 
						|
      class="text-4xl font-extrabold text-center mb-10 bg-linear-to-r from-gray-700 to-gray-500 bg-clip-text text-transparent"
 | 
						|
    >
 | 
						|
      Movie Library
 | 
						|
    </h1>
 | 
						|
    <MovieList
 | 
						|
      v-auto-animate
 | 
						|
      v-if="store.mediaList"
 | 
						|
      :movies="store.mediaList"
 | 
						|
      :loading-more="false"
 | 
						|
      :is-search="false"
 | 
						|
    />
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<style scoped></style>
 |