naive-ui/demo/documentation/theme/enUS/readTheme.md

37 lines
730 B
Markdown
Raw Normal View History

2019-12-07 00:02:31 +08:00
# Get Theme
Use Config Consumer to get theme at current position.
```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>
<n-config-consumer
@theme-change="handleThemeChange"
>
<template v-slot="{ theme }">
<div>theme: {{ theme }}</div>
</template>
</n-config-consumer>
</div>
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;
}
```