2024-05-11 09:41:33 +08:00
|
|
|
<template>
|
2024-05-28 11:33:15 +08:00
|
|
|
<wd-config-provider :themeVars="themeVars">
|
|
|
|
<slot />
|
|
|
|
<fg-tabbar />
|
|
|
|
<wd-toast />
|
|
|
|
<wd-message-box />
|
|
|
|
</wd-config-provider>
|
2024-05-11 09:41:33 +08:00
|
|
|
</template>
|
2024-05-28 11:33:15 +08:00
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2025-06-21 14:13:30 +08:00
|
|
|
import FgTabbar from './fg-tabbar/fg-tabbar.vue'
|
2024-05-28 11:33:15 +08:00
|
|
|
import type { ConfigProviderThemeVars } from 'wot-design-uni'
|
|
|
|
|
|
|
|
const themeVars: ConfigProviderThemeVars = {
|
|
|
|
// colorTheme: 'red',
|
|
|
|
// buttonPrimaryBgColor: '#07c160',
|
|
|
|
// buttonPrimaryColor: '#07c160',
|
|
|
|
}
|
|
|
|
</script>
|