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

index.vue « pages « saved_replies « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 38f51dbc3652cb2c026fbc1757e90fc89ad29df5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<script>
import List from '../components/list.vue';

export default {
  components: {
    List,
  },
};
</script>

<template>
  <div>
    <list />
  </div>
</template>