16 lines
295 B
Vue
16 lines
295 B
Vue
|
<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>
|