mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
25 lines
449 B
Markdown
25 lines
449 B
Markdown
# 主题
|
|
设置 Config Provider 内部组件的主题。
|
|
```html
|
|
<n-config-provider :theme="theme">
|
|
<div style="background-color: rgba(128, 128, 128); padding: 8px;">
|
|
<n-button @click="theme = 'dark'">深色</n-button>
|
|
<n-button @click="theme = 'light'">浅色</n-button>
|
|
</div>
|
|
</n-config-provider>
|
|
```
|
|
```js
|
|
export default {
|
|
data () {
|
|
return {
|
|
theme: 'dark'
|
|
}
|
|
}
|
|
}
|
|
```
|
|
```css
|
|
.n-button {
|
|
margin: 0 12px 8px 0;
|
|
}
|
|
```
|