2019-12-07 00:02:31 +08:00
|
|
|
# Get Theme
|
2020-03-08 00:06:05 +08:00
|
|
|
Use `n-config-consumer` to get the theme at current position.
|
2019-12-07 00:02:31 +08:00
|
|
|
|
|
|
|
```html
|
2020-05-31 13:38:35 +08:00
|
|
|
<div>
|
|
|
|
<n-button @click="theme = 'dark'">Dark</n-button>
|
|
|
|
<n-button @click="theme = 'light'">Light</n-button>
|
|
|
|
</div>
|
2019-12-07 00:02:31 +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-config-consumer
|
|
|
|
@theme-change="handleThemeChange"
|
2020-05-31 13:38:35 +08:00
|
|
|
v-slot="{ theme }"
|
2020-03-01 19:17:53 +08:00
|
|
|
>
|
2020-05-31 13:38:35 +08:00
|
|
|
<div>theme: {{ theme }}</div>
|
2020-03-01 19:17:53 +08:00
|
|
|
</n-config-consumer>
|
2020-05-31 13:38:35 +08:00
|
|
|
</n-card>
|
2019-12-07 00:02:31 +08:00
|
|
|
</n-config-provider>
|
|
|
|
```
|
|
|
|
```js
|
|
|
|
export default {
|
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
theme: 'dark'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
handleThemeChange (theme) {
|
|
|
|
this.$NMessage.info(theme)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
```css
|
|
|
|
.n-button {
|
|
|
|
margin: 0 12px 8px 0;
|
|
|
|
}
|
|
|
|
```
|