naive-ui/demo/documentation/components/config-provider/zhCN/theme-environment-debug.demo.md
2020-12-24 00:29:04 +08:00

736 B

主题环境(弃用)

你有的时候可能需要让一些组件在特定主题下获取一些值,这个时候你可以设定环境主题。

<div>
  <n-button @click="theme = 'dark'">深色主题</n-button>
  <n-button @click="theme = 'light'">浅色主题</n-button>
</div>
<n-config-provider :theme="theme" :theme-environments="env">
  <n-config-consumer #="{ themeEnvironment }">
    <n-card>
      <n-tag>{{ themeEnvironment }}</n-tag>
    </n-card>
  </n-config-consumer>
</n-config-provider>
export default {
  data () {
    return {
      theme: 'dark',
      env: {
        dark: '氯化钠',
        light: '离子化合物'
      }
    }
  }
}
.n-button {
  margin: 0 8px 12px 0;
}