kitabu-chain-explorer/components/Loader.vue

16 lines
194 B
Vue

<template>
<v-skeleton-loader
class="mx-auto"
:max-height="h"
type="card"
></v-skeleton-loader>
</template>
<script>
export default {
props: {
h: String,
},
}
</script>