| 123456789101112131415161718192021222324 |
- <template>
- <div id="app">
- <router-view></router-view>
- </div>
- </template>
- <script>
- export default {
- name: 'App',
- components: {}
- }
- </script>
- <style lang="scss">
- #app {
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- position: absolute;
- height: 100%;
- width: 100%;
- color: var(--im-text-color);
- font-family: var(--im-font-family);
- }
- </style>
|