2024-05-12 16:24:37 +08:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import type { ConfigProviderThemeVars } from 'wot-design-uni'
|
|
|
|
|
|
|
|
const themeVars: ConfigProviderThemeVars = {
|
|
|
|
// colorTheme: 'red',
|
|
|
|
// buttonPrimaryBgColor: '#07c160',
|
|
|
|
// buttonPrimaryColor: '#07c160',
|
|
|
|
}
|
|
|
|
</script>
|
2025-06-20 12:12:21 +08:00
|
|
|
|
|
|
|
<template>
|
|
|
|
<wd-config-provider :theme-vars="themeVars">
|
|
|
|
<slot />
|
|
|
|
<wd-toast />
|
|
|
|
<wd-message-box />
|
|
|
|
<privacy-popup />
|
|
|
|
</wd-config-provider>
|
|
|
|
</template>
|