unibest/src/layouts/tabbar.vue

19 lines
408 B
Vue
Raw Normal View History

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>
import type { ConfigProviderThemeVars } from 'wot-design-uni'
const themeVars: ConfigProviderThemeVars = {
// colorTheme: 'red',
// buttonPrimaryBgColor: '#07c160',
// buttonPrimaryColor: '#07c160',
}
</script>