mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-22 15:56:15 -04:00
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>
|