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

25 lines
411 B
Markdown
Raw Normal View History

2019-12-07 00:02:31 +08:00
# Provide Theme
2020-12-12 14:44:44 +08:00
2020-03-20 22:52:54 +08:00
Use `n-config-provider` to set the theme of all its descedant components.
2019-12-07 00:02:31 +08:00
```html
<n-config-provider :theme="theme">
<n-card>
2020-11-30 14:29:48 +08:00
<n-space>
<n-button @click="theme = 'dark'">Dark</n-button>
<n-button @click="theme = 'light'">Light</n-button>
</n-space>
</n-card>
2019-12-07 00:02:31 +08:00
</n-config-provider>
```
2020-12-12 14:44:44 +08:00
2019-12-07 00:02:31 +08:00
```js
export default {
2020-12-12 15:33:41 +08:00
data () {
2019-12-07 00:02:31 +08:00
return {
theme: 'dark'
}
}
}
```