1
0
Fork 0
mirror of https://github.com/CorentinTh/it-tools.git synced 2025-07-23 15:19:36 +02:00

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

@ -3,29 +3,21 @@ import { toolsWithCategory } from '@/tools';
import ToolCard from '../components/ToolCard.vue';
import { useHead } from '@vueuse/head';
useHead({title: 'IT Tools'})
useHead({ title: 'IT Tools' });
</script>
<template>
<div class="home-page">
<n-grid
x-gap="12"
y-gap="12"
cols="1 400:2 800:3 1200:4 2000:8"
>
<n-gi
v-for="tool in toolsWithCategory"
:key="tool.name"
>
<n-grid x-gap="12" y-gap="12" cols="1 400:2 800:3 1200:4 2000:8">
<n-gi v-for="tool in toolsWithCategory" :key="tool.name">
<tool-card :tool="tool" />
</n-gi>
</n-grid>
</div>
</template>
<style scoped lang="less">
.home-page {
padding-top: 50px;
padding-top: 50px;
}
</style>
</style>