ColorModeSwitch

SwitchGitHub
A switch to toggle between light and dark mode.

Usage

The ColorModeSwitch component extends the Switch component, so you can pass any property such as color, size, etc.

<template>
  <UColorModeSwitch />
</template>

Examples

With custom icons

Use the app.config.ts to customize the icon with the ui.icons property:

app.config.ts
export default defineAppConfig({
  ui: {
    icons: {
      light: 'i-ph-sun',
      dark: 'i-ph-moon'
    }
  }
})

Use the vite.config.ts to customize the icon with the ui.icons property:

vite.config.ts
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import ui from '@nuxt/ui/vite'

export default defineConfig({
  plugins: [
    vue(),
    ui({
      ui: {
        icons: {
          light: 'i-ph-sun',
          dark: 'i-ph-moon'
        }
      }
    })
  ]
})

API

Props

Prop Default Type
as'div'any

The element or component this component should render as.

color'primary' "primary" | "secondary" | "success" | "info" | "warning" | "error" | "neutral"
name string

The name of the field. Submitted with its owning form as part of a name/value pair.

loadingboolean

When true, the loading icon will be displayed.

size'md' "md" | "xs" | "sm" | "lg" | "xl"
autofocus false | true | "true" | "false"
disabledboolean

When true, prevents the user from interacting with the switch.

label string
loadingIconappConfig.ui.icons.loading string | object

The icon when the loading prop is true.

defaultValueboolean

The state of the switch when it is initially rendered. Use when you do not need to control its state.

requiredboolean

When true, indicates that the user must set the value before the owning form can be submitted.

id string
value string

The value given as data when submitted with a name.

description string
ui { root?: ClassNameValue; base?: ClassNameValue; container?: ClassNameValue; thumb?: ClassNameValue; icon?: ClassNameValue; wrapper?: ClassNameValue; label?: ClassNameValue; description?: ClassNameValue; }

Changelog

5b177 — feat: extend native HTML attributes (#5348)

5cb65 — feat: import @nuxt/ui-pro components