| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <div>
- <router-view />
- </div>
- </template>
- <script>
- export default {
-
- // eslint-disable-next-line
- name: 'Desktop',
- components: {
- },
- data: function () {
- return {
- };
- },
- methods: {
- },
- };
- </script>
- <style>
- h1{
- font-size: 36px;
- border-bottom: 1px solid lightgray;
- padding-bottom: 10px;
- }
- h2 {
- font-size: 26px;
- border-bottom: 1px solid lightgray;
- padding-bottom: 10px;
- }
- </style>
|