naive-ui/demo/documentation/theme/enUS/provideTheme.md
2020-02-05 13:13:48 +08:00

393 B

Provide Theme

Use Config Provider to set the theme of all its descedant components.

<n-config-provider :theme="theme">
  <n-button @click="theme = 'dark'">Dark</n-button>
  <n-button @click="theme = 'light'">Light</n-button>
</n-config-provider>
export default {
  data () {
    return {
      theme: 'dark'
    }
  }
}
.n-button {
  margin: 0 12px 8px 0;
}