mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-15 04:42:23 +08:00
367 B
367 B
主题
设置 Config Provider 内部组件的主题。
<n-config-provider :theme="theme">
<n-button @click="theme = 'dark'">深色</n-button>
<n-button @click="theme = 'light'">浅色</n-button>
</n-config-provider>
export default {
data () {
return {
theme: 'dark'
}
}
}
.n-button {
margin: 0 12px 8px 0;
}