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

38 lines
663 B
Markdown
Raw Normal View History

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