Skip to content
Snippets Groups Projects
Verified Commit 46604f3f authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

[Vue] Add loading skeletons for about page

parent 86a8bf49
No related branches found
No related tags found
1 merge request!1095[Vue] About page
Pipeline #88448 passed
......@@ -4,6 +4,14 @@
>
<template v-slot="{ result: { error, data }, isLoading }">
<v-row>
<v-col v-if="isLoading" v-for="idx in 3" cols="12" md="6" lg="6" xl="4" class="d-flex align-stretch">
<v-card class="d-flex flex-column flex-grow-1 pa-4">
<v-skeleton-loader
type="heading, actions, text@5"
></v-skeleton-loader>
</v-card>
</v-col>
<InstalledAppCard
v-for="app in data.installedApps"
:key="app.name"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment