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

title.vue « form « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b17681319f3451db28de4f465eab1a17bb27e629 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!-- eslint-disable vue/multi-word-component-names -->
<script>
import { GlFormInput, GlFormGroup } from '@gitlab/ui';

export default {
  components: {
    GlFormInput,
    GlFormGroup,
  },
  inheritAttrs: false,
};
</script>
<template>
  <gl-form-group :label="__('Title')" label-for="title-field-edit">
    <gl-form-input v-bind="$attrs" v-on="$listeners" />
  </gl-form-group>
</template>