13 lines
312 B
Vue
13 lines
312 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">
|
||
|
<a-app>
|
||
|
<router-view />
|
||
|
</a-app>
|
||
|
</a-config-provider>
|
||
|
</template>
|