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: 965beb168bf9e26b77c2b91af768b2358d252ce1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!-- eslint-disable vue/multi-word-component-names -->
<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>