0
0
Fork 0
mirror of https://github.com/VueTubeApp/VueTube synced 2024-11-01 09:22:39 +00:00
VueTube/NUXT/components/vidLoadRenderer.vue

12 lines
263 B
Vue

// this is an loading animation for videos
<template>
<div>
<v-sheet color="background" v-for="i in 10" :key="i">
<v-skeleton-loader type="image, list-item-avatar-two-line" />
</v-sheet>
</div>
</template>
<script>
export default {};
</script>