123456789101112131415161718192021222324252627282930313233 |
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <script>
- </script>
- <style lang="less">
- @import './assets/fonts/font.css';
- html,
- body {
- font-family: 'Regular';
- margin: 0;
- padding: 0;
- height: 100%;
- width: 100%;
- }
- h1,
- h2 {
- font-family: 'ExtraBold';
- }
- </style>
|