36 lines
811 B
Vue
36 lines
811 B
Vue
|
<template>
|
||
|
<v-card style="margin-top: 3px">
|
||
|
<v-card-title><v-skeleton-loader type="heading"/></v-card-title>
|
||
|
<v-container>
|
||
|
<v-skeleton-loader type="table-thead" />
|
||
|
<v-skeleton-loader type="table-row-divider@3" />
|
||
|
</v-container>
|
||
|
<v-container fluid>
|
||
|
<v-col>
|
||
|
<v-row>
|
||
|
<v-col>
|
||
|
<v-skeleton-loader type="chip" />
|
||
|
</v-col>
|
||
|
<v-col>
|
||
|
<v-skeleton-loader type="chip" />
|
||
|
</v-col>
|
||
|
<v-col>
|
||
|
<v-skeleton-loader type="chip" />
|
||
|
</v-col>
|
||
|
<v-col>
|
||
|
<v-skeleton-loader type="chip" />
|
||
|
</v-col>
|
||
|
</v-row>
|
||
|
</v-col>
|
||
|
</v-container>
|
||
|
</v-card>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'CreditOverviewSkeleton'
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped></style>
|