naive-ui/demo/documentation/theme/enUS/provideTheme.md

422 B

Provide Theme

Use n-config-provider to set the theme of all its descedant components.

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