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:
parent
8e29a97404
commit
086d31eab5
54 changed files with 1122 additions and 1503 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue