fix: apply ESLint rule vue/no-bare-strings-in-template

This commit is contained in:
iamsivin
2024-07-26 01:43:44 +05:30
parent 602b0d19ca
commit b316b47f74
38 changed files with 192 additions and 109 deletions
@@ -27,7 +27,7 @@ export default {
<template>
<div class="relative flex items-center">
<div
class="absolute inset-y-0 left-0 flex items-center px-2 h-8 text-slate-500"
class="absolute inset-y-0 left-0 flex items-center h-8 px-2 text-slate-500"
>
<fluent-icon icon="search" size="14" />
</div>
@@ -37,14 +37,14 @@ export default {
:placeholder="placeholder"
type="text"
name="search"
class="block w-full h-8 rounded-md focus-visible:outline-none m-0 pl-6 pr-1 px-2 text-sm text-slate-800 border border-slate-100 bg-slate-75 placeholder:text-slate-400 focus:ring focus:border-woot-500 focus:ring-woot-200 hover:border-woot-200"
class="block w-full h-8 px-2 pl-6 pr-1 m-0 text-sm border rounded-md focus-visible:outline-none text-slate-800 border-slate-100 bg-slate-75 placeholder:text-slate-400 focus:ring focus:border-woot-500 focus:ring-woot-200 hover:border-woot-200"
@input="handleInput"
/>
<div class="absolute inset-y-0 right-0 flex h-8 p-1">
<kbd
class="inline-flex items-center rounded border border-slate-200 px-1 font-sans text-xxs text-slate-400"
class="inline-flex items-center px-1 font-sans border rounded border-slate-200 text-xxs text-slate-400"
>
K
{{ '⌘K' }}
</kbd>
</div>
</div>