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

app.vue « pages « kubernetes_dashboard « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d8cb9ccd5fa4411583d208e18b550aaa27e247bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<script>
import PageTitle from '../components/page_title.vue';

export default {
  components: { PageTitle },
};
</script>
<template>
  <div class="gl-mt-5">
    <page-title> {{ $route.meta.title }} </page-title>
  </div>
</template>