lint:fix all

This commit is contained in:
2025-07-29 00:32:57 +08:00
parent 7d2f57df97
commit 1745a54eb6
34 changed files with 820 additions and 606 deletions

View File

@@ -17,28 +17,28 @@ const items = [
toast.add({
title: 'Markdown link copied to clipboard',
icon: 'lucide-check-circle',
color: 'success',
color: 'success'
})
},
}
},
{
label: 'View as Markdown',
icon: 'simple-icons:markdown',
target: '_blank',
to: markdownLink.value,
to: markdownLink.value
},
{
label: 'Open in ChatGPT',
icon: 'simple-icons:openai',
target: '_blank',
to: `https://chatgpt.com/?hints=search&q=${encodeURIComponent(`Read ${markdownLink.value} so I can ask questions about it.`)}`,
to: `https://chatgpt.com/?hints=search&q=${encodeURIComponent(`Read ${markdownLink.value} so I can ask questions about it.`)}`
},
{
label: 'Open in Claude',
icon: 'simple-icons:anthropic',
target: '_blank',
to: `https://claude.ai/new?q=${encodeURIComponent(`Read ${markdownLink.value} so I can ask questions about it.`)}`,
},
to: `https://claude.ai/new?q=${encodeURIComponent(`Read ${markdownLink.value} so I can ask questions about it.`)}`
}
]
</script>
@@ -50,7 +50,7 @@ const items = [
color="neutral"
variant="outline"
:ui="{
leadingIcon: [copied ? 'text-primary' : 'text-neutral', 'size-3.5'],
leadingIcon: [copied ? 'text-primary' : 'text-neutral', 'size-3.5']
}"
@click="copy(markdownLink)"
/>
@@ -61,10 +61,10 @@ const items = [
:content="{
align: 'end',
side: 'bottom',
sideOffset: 8,
sideOffset: 8
}"
:ui="{
content: 'w-48',
content: 'w-48'
}"
>
<UButton