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

title.vue « fields « components « show « issues « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 25801b3307c91a2476f678ea10df49b03d5272c3 (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
30
31
32
33
<!-- eslint-disable vue/multi-word-component-names -->
<script>
import updateMixin from '../../mixins/update';

export default {
  mixins: [updateMixin],
  props: {
    value: {
      type: String,
      required: true,
    },
  },
};
</script>

<template>
  <fieldset>
    <label class="sr-only" for="issuable-title">{{ __('Title') }}</label>
    <input
      id="issuable-title"
      ref="input"
      :value="value"
      class="form-control gl-border-gray-200"
      dir="auto"
      type="text"
      :placeholder="__('Title')"
      :aria-label="__('Title')"
      @input="$emit('input', $event.target.value)"
      @keydown.meta.enter="updateIssuable"
      @keydown.ctrl.enter="updateIssuable"
    />
  </fieldset>
</template>