123456789101112131415161718192021222324 |
- <script setup lang="ts">
- import { RouterView } from 'vue-router';
- import AntdConfig from './components/AntdConfig.vue';
- </script>
- <template>
- <AntdConfig>
- <RouterView />
- </AntdConfig>
- </template>
- <style lang="scss">
- body {
- -moz-osx-font-smoothing: grayscale;
- -webkit-font-smoothing: antialiased;
- text-rendering: optimizelegibility;
- font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', Arial, sans-serif;
- }
- #app {
- height: 100%;
- }
- </style>
|