App.ku.vue 448 B

123456789101112131415161718
  1. <script setup lang="ts">
  2. const { themeVars, theme } = useManualTheme()
  3. </script>
  4. <template>
  5. <wd-config-provider :theme-vars="themeVars" :theme="theme" :custom-class="`page-wraper ${theme}`">
  6. <ku-root-view />
  7. <wd-notify />
  8. <wd-message-box />
  9. <wd-toast />
  10. <global-loading />
  11. <global-toast />
  12. <global-message />
  13. <!-- #ifdef MP-WEIXIN -->
  14. <privacy-popup />
  15. <!-- #endif -->
  16. </wd-config-provider>
  17. </template>