mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-01 01:12:39 +00:00
14 lines
287 B
Vue
14 lines
287 B
Vue
// this is an loading animation for videos
|
|
<template>
|
|
<div>
|
|
<v-sheet color="background" v-for="i in count" :key="i">
|
|
<v-skeleton-loader type="image, list-item-avatar-two-line" />
|
|
</v-sheet>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: ["count"],
|
|
};
|
|
</script>
|