refactor(style): updated linter config

This commit is contained in:
Corentin Thomasset 2022-04-15 23:10:47 +02:00
parent 39746e07c5
commit 6b58ec554a
No known key found for this signature in database
GPG key ID: DBD997E935996158
27 changed files with 1144 additions and 571 deletions

View file

@ -4,13 +4,20 @@ import ToolCard from '../components/ToolCard.vue';
</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">
<tool-card :tool="tool" />
</n-gi>
</n-grid>
</div>
<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"
>
<tool-card :tool="tool" />
</n-gi>
</n-grid>
</div>
</template>