diff --git a/README.md b/README.md index 8433e743..bff03861 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ export default defineNuxtConfig({ 2. Import Tailwind CSS and Nuxt UI in your CSS: ```css [assets/css/main.css] -@import "tailwindcss" theme(static); +@import "tailwindcss"; @import "@nuxt/ui"; ``` @@ -98,7 +98,7 @@ app.mount('#app') 3. Import Tailwind CSS and Nuxt UI in your CSS: ```css [assets/main.css] -@import "tailwindcss" theme(static); +@import "tailwindcss"; @import "@nuxt/ui"; ``` diff --git a/docs/app/components/theme-picker/ThemePicker.vue b/docs/app/components/theme-picker/ThemePicker.vue index fd3e06cf..483dd216 100644 --- a/docs/app/components/theme-picker/ThemePicker.vue +++ b/docs/app/components/theme-picker/ThemePicker.vue @@ -81,7 +81,6 @@ function setBlackAsPrimary(value: boolean) {
+ () + +const slots = defineSlots<{ + leading: () => any +}>()