unibest/src/layouts/default.vue

19 lines
412 B
Vue
Raw Normal View History

<template>
2024-05-12 16:24:37 +08:00
<wd-config-provider :themeVars="themeVars">
<slot />
2024-05-12 15:53:20 +08:00
<wd-toast />
<wd-message-box />
<privacy-popup />
2024-05-12 15:53:20 +08:00
</wd-config-provider>
</template>
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>