16 lines
		
	
	
		
			338 B
		
	
	
	
		
			Vue
		
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			338 B
		
	
	
	
		
			Vue
		
	
	
	
| <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 id="title-field-edit" v-bind="$attrs" v-on="$listeners" />
 | |
|   </gl-form-group>
 | |
| </template>
 |