16 lines
		
	
	
		
			318 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			318 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <v-row justify="center" align="center">
 | |
|     <v-col cols="12" sm="12" md="8">
 | |
|       <h1>How-to-report-bug-or-request</h1>
 | |
|     </v-col>
 | |
|   </v-row>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| import {Component, Vue} from 'nuxt-property-decorator'
 | |
| 
 | |
| @Component
 | |
| export default class HowToReportBugOrRequest extends Vue {
 | |
| }
 | |
| </script>
 |