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

23 lines
410 B
Markdown
Raw Normal View History

2020-02-05 13:13:48 +08:00
# 提供主题
使用配置提供者Config Provider来设定它全部的后代组件主题。
```html
<n-config-provider :theme="theme">
<n-button @click="theme = 'dark'">深色</n-button>
<n-button @click="theme = 'light'">浅色</n-button>
</n-config-provider>
```
```js
export default {
data () {
return {
theme: 'dark'
}
}
}
```
```css
.n-button {
margin: 0 12px 8px 0;
}
```