skeletonMovieDetailLoader.vue 741 Bytes
<script setup lang="ts"></script>

<template>
  <v-container class="bg-gray-900">
    <v-row class="bg-gray-900">
      <v-col
        cols="12"
        sm="4"
      >
        <v-skeleton-loader
          class="mx-auto border bg-gray-800"
          color="#1f2937"
          width="auto"
          height="600px"
          type="paragraph, image"
        />
      </v-col>
      <v-col
        cols="12"
        sm="8"
      >
        <v-skeleton-loader
          class="mx-auto mt-10"
          color="#1f2937"
          elevation="12"
          min-height="400px"
          type="table-heading, list-item-two-line, article, actions, table-tfoot"
        />
      </v-col>
    </v-row>
  </v-container>
</template>

<style scoped></style>