O componente ColorModeSwitch estende o componente Switch, então você pode passar qualquer propriedade como color, size, etc.
<template>
<NColorModeSwitch />
</template>
Use o app.config.ts para personalizar o ícone com a propriedade ui.icons:
export default defineAppConfig({
ui: {
icons: {
light: 'i-ph-sun',
dark: 'i-ph-moon'
}
}
})
Use o vite.config.ts para personalizar o ícone com a propriedade ui.icons:
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import ui from '@nitro/ui/vite'
export default defineConfig({
plugins: [
vue(),
ui({
ui: {
icons: {
light: 'i-ph-sun',
dark: 'i-ph-moon'
}
}
})
]
})
| Prop | Default | Type |
|---|---|---|
as | 'div' | anyThe element or component this component should render as. |
color | 'primary' | "primary" | "secondary" | "accent" | "success" | "info" | "warning" | "error" | "neutral" |
highlight | boolean Highlight the ring color like a focus state. | |
name | stringThe name of the field. Submitted with its owning form as part of a name/value pair. | |
loading | boolean When | |
size | 'md' | "md" | "xs" | "sm" | "lg" | "xl" |
autofocus | false | true | "true" | "false" | |
disabled | boolean When | |
label | string | |
loadingIcon | appConfig.ui.icons.loading | anyThe icon when the |
defaultValue | boolean The state of the switch when it is initially rendered. Use when you do not need to control its state. | |
required | boolean When | |
id | string | |
value | stringThe value given as data when submitted with a | |
description | string | |
trueValue | boolean The value used when the switch is on. Defaults to | |
falseValue | boolean The value used when the switch is off. Defaults to | |
ui | { root?: SlotClass; base?: SlotClass; container?: SlotClass; thumb?: SlotClass; icon?: SlotClass; wrapper?: SlotClass; label?: SlotClass; description?: SlotClass; } |