1234567891011121314151617181920212223 |
- <template>
- <wd-config-provider :themeVars="themeVars">
- <slot class="my-component" />
- <wd-toast />
- <wd-message-box />
- <wd-notify />
- </wd-config-provider>
- </template>
- <script lang="ts" setup>
- import type { ConfigProviderThemeVars } from 'wot-design-uni'
- import { Locale } from 'wot-design-uni'
- // 引入英文语言包
- import enUS from 'wot-design-uni/locale/lang/en-US'
- Locale.use('en-US', enUS)
- const themeVars: ConfigProviderThemeVars = {
- // colorTheme: 'red',
- // buttonPrimaryBgColor: '#07c160',
- // buttonPrimaryColor: '#07c160',
- }
- </script>
- <style lang="scss"></style>
|