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

token.vue « components « add_context_commits_modal « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 020c121d1e4e8516ce1d85bdfed6434d0e360031 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!-- eslint-disable vue/multi-word-component-names -->
<script>
import { GlFilteredSearchToken } from '@gitlab/ui';

export default {
  components: {
    GlFilteredSearchToken,
  },
  props: {
    config: {
      type: Object,
      required: true,
    },
    value: {
      type: Object,
      required: true,
    },
  },
  data() {
    return {
      val: '',
    };
  },
};
</script>

<template>
  <gl-filtered-search-token v-bind="{ ...$props, ...$attrs }" v-on="$listeners" />
</template>