naive-ui/demo/documentation/theme/zhCN/provideTheme.md
2020-03-20 22:52:54 +08:00

477 B

提供主题

使用 n-config-provider 来设定它全部的后代组件主题。

<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>
export default {
  data () {
    return {
      theme: 'dark'
    }
  }
}
.n-button {
  margin: 0 12px 8px 0;
}