web-map/src/App.vue

25 lines
670 B
Vue
Raw Normal View History

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-05 01:06:09 +08:00
:input="{ autocomplete: 'off' }"
2025-05-01 01:07:16 +08:00
>
2025-05-05 01:06:09 +08:00
<template #renderEmpty>
<a-flex justify="center" align="center" :gap="8" vertical>
2025-05-05 23:21:31 +08:00
<img height="40" :src="sTheme.empty" />
2025-05-05 01:06:09 +08:00
<a-typography-text disabled>{{ $t('暂无数据') }}</a-typography-text>
</a-flex>
</template>
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>