mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-20 14:56:17 -04:00
refactor(style): updated linter config
This commit is contained in:
parent
39746e07c5
commit
6b58ec554a
27 changed files with 1144 additions and 571 deletions
|
@ -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>
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue