18 lines
379 B
Vue
18 lines
379 B
Vue
<script setup lang="ts">
|
|
import sLocale from '@core/locale.service';
|
|
import sTheme from '@core/theme.service';
|
|
</script>
|
|
|
|
<template>
|
|
<a-config-provider
|
|
:locale="sLocale.ant"
|
|
:theme="sTheme.ant"
|
|
:autoInsertSpaceInButton="false"
|
|
:wave="{ disabled: true }"
|
|
>
|
|
<a-app @contextmenu.prevent>
|
|
<router-view />
|
|
</a-app>
|
|
</a-config-provider>
|
|
</template>
|