mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-24 12:45:18 +08:00
24 lines
446 B
Markdown
24 lines
446 B
Markdown
# Theme
|
|
Set theme of inner components of config provider.
|
|
```html
|
|
<n-config-provider :theme="theme">
|
|
<div style="background-color: rgba(128, 128, 128); padding: 8px;">
|
|
<n-button @click="theme = 'dark'">Dark</n-button>
|
|
<n-button @click="theme = 'light'">Light</n-button>
|
|
</div>
|
|
</n-config-provider>
|
|
```
|
|
```js
|
|
export default {
|
|
data () {
|
|
return {
|
|
theme: 'dark'
|
|
}
|
|
}
|
|
}
|
|
```
|
|
```css
|
|
.n-button {
|
|
margin: 0 12px 8px 0;
|
|
}
|
|
``` |