movie-night-web/src/components/LoadingIcon.vue

16 lines
295 B
Vue
Raw Normal View History

2025-04-22 19:32:12 -05:00
<script lang="ts" setup></script>
<template>
<video
alt="Loading"
autoplay
class="flex absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2"
loop
muted
src="/assets/img/movie-loader.webm"
type="video/webm"
/>
</template>
<style scoped></style>