1234567891011121314151617181920212223242526272829303132333435 |
- <template>
- <ConfigProvider :locale="getAntdLocale">
- <AppProvider>
- <RouterView />
- </AppProvider>
- </ConfigProvider>
- </template>
- <script lang="ts" setup>
- import { ConfigProvider } from 'ant-design-vue';
- import { AppProvider } from '/@/components/Application';
- import { useTitle } from '/@/hooks/web/useTitle';
- import { useLocale } from '/@/locales/useLocale';
- // support Multi-language
- const { getAntdLocale } = useLocale();
- // Listening to page changes and dynamically changing site titles
- useTitle();
- </script>
- <style lang="less">
- .desc-wrap-BasicTable {
- background-color: #f0f2f5;
- .vben-basic-table-form-container {
- padding: 0;
- }
- }
- .ant-input-textarea-clear-icon{
- margin: 8px 2px 0 0 !important;
- }
- // .ant-calendar-picker{
- // min-width: 385px;
- // }
- </style>
|