2025-04-20 00:49:14 +08:00
|
|
|
<script setup lang="ts">
|
|
|
|
import sLocale from '@core/locale.service';
|
|
|
|
import sTheme from '@core/theme.service';
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2025-05-01 01:07:16 +08:00
|
|
|
<a-config-provider
|
|
|
|
:locale="sLocale.ant"
|
|
|
|
:theme="sTheme.ant"
|
|
|
|
:autoInsertSpaceInButton="false"
|
|
|
|
:wave="{ disabled: true }"
|
|
|
|
>
|
2025-05-02 00:35:53 +08:00
|
|
|
<a-app @contextmenu.prevent>
|
|
|
|
<router-view />
|
|
|
|
</a-app>
|
2025-04-20 00:49:14 +08:00
|
|
|
</a-config-provider>
|
|
|
|
</template>
|