VueTube/NUXT/components/vidLoadRenderer.vue

15 lines
287 B
Vue
Raw Permalink Normal View History

2022-03-24 11:47:13 +00:00
// this is an loading animation for videos
<template>
<div>
2022-04-01 03:03:25 +00:00
<v-sheet color="background" v-for="i in count" :key="i">
<v-skeleton-loader type="image, list-item-avatar-two-line" />
2022-03-31 22:25:31 +00:00
</v-sheet>
</div>
2022-03-24 11:47:13 +00:00
</template>
2022-03-31 22:25:31 +00:00
<script>
2022-04-01 03:03:25 +00:00
export default {
props: ["count"],
};
2022-03-31 22:25:31 +00:00
</script>