Welcome to mirror list, hosted at ThFree Co, Russian Federation.

embed.vue « skeleton « components « observability « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7abaf2b1bc751fc91b9bd9e748d12f617da9d20f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<script>
import { GlSkeletonLoader } from '@gitlab/ui';

export default {
  components: {
    GlSkeletonLoader,
  },
};
</script>
<template>
  <gl-skeleton-loader>
    <rect y="5" width="400" height="30" rx="2" ry="2" />
    <rect y="50" width="400" height="80" rx="2" ry="2" />
  </gl-skeleton-loader>
</template>