refactor(lint): linter auto fix

This commit is contained in:
Corentin Thomasset 2022-04-22 23:31:40 +02:00
parent 8e29a97404
commit 086d31eab5
No known key found for this signature in database
GPG key ID: DBD997E935996158
54 changed files with 1122 additions and 1503 deletions

View file

@ -1,40 +1,23 @@
<script setup lang="ts">
import { useHead } from '@vueuse/head';
useHead({title: 'Page not found - IT Tools'})
useHead({ title: 'Page not found - IT Tools' });
</script>
<template>
<div class="e404-wrapper">
<n-result
status="404"
title="404 Not Found"
description="Sorry, this page does not seem to extist"
>
<n-result status="404" title="404 Not Found" description="Sorry, this page does not seem to extist">
<template #footer>
<router-link
to="/"
#="{ navigate, href }"
custom
>
<n-button
tag="a"
:href="href"
secondary
type="success"
@click="navigate"
>
Back home
</n-button>
<router-link to="/" #="{ navigate, href }" custom>
<n-button tag="a" :href="href" secondary type="success" @click="navigate"> Back home </n-button>
</router-link>
</template>
</n-result>
</div>
</template>
<style scoped>
.e404-wrapper {
padding-top: 150px;
padding-top: 150px;
}
</style>
</style>