naive-ui/demo/documentation/components/configProvider/zhCN/theme.md

23 lines
367 B
Markdown
Raw Normal View History

2020-01-04 17:32:23 +08:00
# 主题
2020-02-03 19:28:16 +08:00
设置 Config Provider 内部组件的主题。
2020-01-04 17:32:23 +08:00
```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;
}
```