fix: rework setup to improve SSR compatibility
This commit is contained in:
parent
fd7d30a38a
commit
d8d163dbd0
22 changed files with 137 additions and 73 deletions
|
@ -121,13 +121,13 @@ onMounted(async () => {
|
|||
text-left z-10 shadow of-auto
|
||||
>
|
||||
<div
|
||||
v-for="server, idx in filteredServers"
|
||||
:key="server"
|
||||
:value="server"
|
||||
v-for="name, idx in filteredServers"
|
||||
:key="name"
|
||||
:value="name"
|
||||
px-2 py1 font-mono
|
||||
:class="autocompleteIndex === idx ? 'text-primary font-bold' : null"
|
||||
>
|
||||
{{ server }}
|
||||
{{ name }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue