2019-10-12 15:46:02 +08:00
|
|
|
# Theme
|
2020-03-08 00:06:05 +08:00
|
|
|
Set theme of inner components of `n-config-provider`.
|
2019-10-12 15:46:02 +08:00
|
|
|
```html
|
2019-11-09 22:45:07 +08:00
|
|
|
<n-config-provider :theme="theme">
|
2020-05-31 13:38:35 +08:00
|
|
|
<n-card>
|
2020-03-01 19:17:53 +08:00
|
|
|
<n-button @click="theme = 'dark'">Dark</n-button>
|
|
|
|
<n-button @click="theme = 'light'">Light</n-button>
|
2020-05-31 13:38:35 +08:00
|
|
|
</n-card>
|
2019-11-09 22:45:07 +08:00
|
|
|
</n-config-provider>
|
2019-10-12 15:46:02 +08:00
|
|
|
```
|
|
|
|
```js
|
|
|
|
export default {
|
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
theme: 'dark'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
```css
|
|
|
|
.n-button {
|
2020-05-31 13:38:35 +08:00
|
|
|
margin: 0 12px 0 0;
|
2019-10-12 15:46:02 +08:00
|
|
|
}
|
|
|
|
```
|