demo.vue 390 B

1234567891011121314151617
  1. <template>
  2. <wd-config-provider :themeVars="themeVars">
  3. <slot />
  4. <wd-toast />
  5. <wd-message-box />
  6. </wd-config-provider>
  7. </template>
  8. <script lang="ts" setup>
  9. import type { ConfigProviderThemeVars } from 'wot-design-uni'
  10. const themeVars: ConfigProviderThemeVars = {
  11. // colorTheme: 'red',
  12. // buttonPrimaryBgColor: '#07c160',
  13. // buttonPrimaryColor: '#07c160',
  14. }
  15. </script>