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

notes_filters.vue « components « sidebar « search « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3a9f582d554622659d779e8b566ce72c05e50ce5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<script>
import ArchivedFilter from './archived_filter/index.vue';
import FiltersTemplate from './filters_template.vue';

export default {
  name: 'NotesFilters',
  components: {
    ArchivedFilter,
    FiltersTemplate,
  },
};
</script>

<template>
  <filters-template>
    <archived-filter class="gl-mb-5" />
  </filters-template>
</template>