mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-21 23:36:15 -04:00
20 lines
350 B
Vue
20 lines
350 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>
|
|
|
|
<style lang="less">
|
|
|
|
</style>
|