更改图标

This commit is contained in:
2025-07-28 20:16:21 +08:00
parent a9a6659d78
commit c1d4963395
4 changed files with 2 additions and 32 deletions

View File

@@ -16,8 +16,8 @@ const isLight = computed({
<div class="flex-1 flex items-center justify-center">
<USwitch
v-model="isLight"
unchecked-icon="i-lucide-moon"
checked-icon="i-lucide-sun"
unchecked-icon="lucide-moon"
checked-icon="lucide-sun"
aria-label="Toggle color mode"
size="xl"
color="neutral"

View File

@@ -92,10 +92,6 @@ You can pass any property from the HTML `<img>` element such as `alt`, `loading`
:read-more{to="/getting-started/writing/markdown" color="neutral"}
:read-more{title="Nuxt website" to="https://nuxt.com/" }
:read-more{to="https://nuxt.com/"}
:read-more{icon="lucide:link" title="Nuxt website"}
::ECard
---

View File

View File

@@ -55,31 +55,5 @@ export default defineNuxtConfig({
icon: {
provider: 'iconify'
},
llms: {
domain: 'https://docs-template.nuxt.dev/',
title: 'Nuxt Docs Template',
description: 'A template for building documentation with Nuxt UI Pro and Nuxt Content.',
full: {
title: 'Nuxt Docs Template - Full Documentation',
description: 'This is the full documentation for the Nuxt Docs Template.'
},
sections: [
{
title: 'Getting Started',
contentCollection: 'docs',
contentFilters: [
{ field: 'path', operator: 'LIKE', value: '/getting-started%' }
]
},
{
title: 'Essentials',
contentCollection: 'docs',
contentFilters: [
{ field: 'path', operator: 'LIKE', value: '/essentials%' }
]
}
]
}
})