Skip to content

ConfigProvider 配置提供者

基本用法

查看示例
vue
<template>
  <yy-config-provider theme="light">
    <yy-button>Light Theme</yy-button>
  </yy-config-provider>
  <yy-config-provider theme="dark">
    <yy-button>Dark Theme</yy-button>
  </yy-config-provider>
</template>

嵌套使用

查看示例
vue
<template>
  <yy-config-provider theme="light">
    <yy-button>外层 Light</yy-button>
    <yy-config-provider theme="dark">
      <yy-button>内层 Dark</yy-button>
    </yy-config-provider>
  </yy-config-provider>
</template>

Props

参数说明类型默认值
theme主题色调'light' | 'dark' | string'light'