VueTube/NUXT/components/vidLoadRenderer.vue

13 lines
241 B
Vue
Raw Normal View History

2022-03-24 11:47:13 +00:00
// this is an loading animation for videos
<template>
<center>
2022-03-31 22:25:31 +00:00
<v-sheet color="background">
<v-skeleton-loader type="card-avatar, article, actions" />
</v-sheet>
2022-03-24 11:47:13 +00:00
</center>
</template>
2022-03-31 22:25:31 +00:00
<script>
export default {};
</script>