29 lines
531 B
Markdown
29 lines
531 B
Markdown
# Provide Theme
|
|
|
|
Use `n-config-provider` to set the theme of all its descendant components.
|
|
|
|
```html
|
|
<n-config-provider :theme="theme">
|
|
<n-card>
|
|
<n-space>
|
|
<n-button @click="theme = darkTheme">Dark</n-button>
|
|
<n-button @click="theme = null">Light</n-button>
|
|
</n-space>
|
|
</n-card>
|
|
</n-config-provider>
|
|
```
|
|
|
|
```js
|
|
import { defineComponent, ref } from 'vue'
|
|
import { darkTheme } from 'naive-ui'
|
|
|
|
export default defineComponent({
|
|
setup () {
|
|
return {
|
|
darkTheme,
|
|
theme: ref(null)
|
|
}
|
|
}
|
|
})
|
|
```
|