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: fad69dc1e24811109ef702e6223c9dd24dcf156e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<script>
import { GlFormInput, GlFormGroup } from '@gitlab/ui';

export default {
  components: {
    GlFormInput,
    GlFormGroup,
  },
};
</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>