12345678910111213141516171819202122 |
- <template>
- <router-view></router-view>
- </template>
- <script lang="ts">
- import { Options, Vue } from 'vue-class-component';
- @Options({
- components: {
- },
- })
- export default class App extends Vue {}
- </script>
- <style>
- #app {
- font-family: Avenir, Helvetica, Arial, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- text-align: center;
- color: #2c3e50;
- }
- </style>
|