mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-22 07:03:53 +08:00
18 lines
427 B
Vue
18 lines
427 B
Vue
<script lang="ts" setup>
|
|
import type { ConfigProviderThemeVars } from 'wot-design-uni/components/wd-config-provider/types'
|
|
|
|
const themeVars: ConfigProviderThemeVars = {
|
|
// colorTheme: 'red',
|
|
// buttonPrimaryBgColor: '#07c160',
|
|
// buttonPrimaryColor: '#07c160',
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<wd-config-provider :theme-vars="themeVars">
|
|
<slot />
|
|
<wd-toast />
|
|
<wd-message-box />
|
|
</wd-config-provider>
|
|
</template>
|