mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
25 lines
422 B
Markdown
25 lines
422 B
Markdown
# Provide Theme
|
|
Use `n-config-provider` to set the theme of all its descedant components.
|
|
|
|
```html
|
|
<n-config-provider :theme="theme">
|
|
<n-card>
|
|
<n-button @click="theme = 'dark'">Dark</n-button>
|
|
<n-button @click="theme = 'light'">Light</n-button>
|
|
</n-card>
|
|
</n-config-provider>
|
|
```
|
|
```js
|
|
export default {
|
|
data () {
|
|
return {
|
|
theme: 'dark'
|
|
}
|
|
}
|
|
}
|
|
```
|
|
```css
|
|
.n-button {
|
|
margin: 0 12px 0 0;
|
|
}
|
|
``` |