mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-21 23:36:15 -04:00
fix(lint): updated slot
This commit is contained in:
parent
65bce59f59
commit
fe8de0b3cf
6 changed files with 15 additions and 8 deletions
|
@ -7,9 +7,9 @@
|
|||
:label="label"
|
||||
@input="$emit('input', color)"
|
||||
>
|
||||
<template v-slot:append>
|
||||
<template #append>
|
||||
<v-menu v-model="menu" top nudge-bottom="101" nudge-left="16" :close-on-content-click="false">
|
||||
<template v-slot:activator="{ on }">
|
||||
<template #activator="{ on }">
|
||||
<div :style="swatchStyle" v-on="on" />
|
||||
</template>
|
||||
<v-card>
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
cache-items
|
||||
@change="choose"
|
||||
>
|
||||
<template v-slot:no-data>
|
||||
<template #no-data>
|
||||
<v-list-item>
|
||||
<v-list-item-title>
|
||||
Search for the <strong>tool</strong> you need!
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
fixed
|
||||
app
|
||||
>
|
||||
<template v-slot:prepend>
|
||||
<template #prepend>
|
||||
<div class="small-hero">
|
||||
<HeroGradient />
|
||||
<div class="small-hero-content">
|
||||
|
@ -47,7 +47,7 @@
|
|||
</div>
|
||||
</v-list>
|
||||
|
||||
<template v-slot:append>
|
||||
<template #append>
|
||||
<v-divider />
|
||||
|
||||
<div class="pa-5 navigation-drawer-footer">
|
||||
|
|
9
package-lock.json
generated
9
package-lock.json
generated
|
@ -13430,6 +13430,12 @@
|
|||
"resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz",
|
||||
"integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA=="
|
||||
},
|
||||
"nan": {
|
||||
"version": "2.14.2",
|
||||
"resolved": "https://registry.npmjs.org/nan/-/nan-2.14.2.tgz",
|
||||
"integrity": "sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ==",
|
||||
"optional": true
|
||||
},
|
||||
"nanoid": {
|
||||
"version": "3.1.23",
|
||||
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.23.tgz",
|
||||
|
@ -18751,7 +18757,8 @@
|
|||
"integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==",
|
||||
"optional": true,
|
||||
"requires": {
|
||||
"bindings": "^1.5.0"
|
||||
"bindings": "^1.5.0",
|
||||
"nan": "^2.12.1"
|
||||
}
|
||||
},
|
||||
"glob-parent": {
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
"start": "nuxt-ts start",
|
||||
"generate": "nuxt-ts generate",
|
||||
"lint:commit": "commitlint --from $(git rev-list --max-parents=0 HEAD)",
|
||||
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
|
||||
"lint:js": "eslint --ext .js,.vue --ignore-path=.gitignore --max-warnings=0 .",
|
||||
"lint": "npm run lint:js && npm run lint:commit",
|
||||
"test": "jest"
|
||||
},
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
</div>
|
||||
<br>
|
||||
<v-simple-table dense>
|
||||
<template v-slot:default>
|
||||
<template #default>
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="text-left">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue