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

23 lines
392 B
Markdown
Raw Normal View History

2019-12-07 00:02:31 +08:00
# Provide Theme
Use Config Provide to set the theme of all its descedant components.
```html
<n-config-provider :theme="theme">
<n-button @click="theme = 'dark'">Dark</n-button>
<n-button @click="theme = 'light'">Light</n-button>
</n-config-provider>
```
```js
export default {
data () {
return {
theme: 'dark'
}
}
}
```
```css
.n-button {
margin: 0 12px 8px 0;
}
```