tabbar.vue 426 B

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