12345678910111213141516171819202122232425262728 |
- <template>
- <router-view />
- </template>
- <script>
- export default {
- replace: false,
- methods: {
-
- },
- mounted() {
-
- }
- };
- </script>
- <style lang="scss">
- body {
- padding: 50px;
- margin: 0;
- font-family: Roboto, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
- background-color: lightgray;
- }
- </style>
- <style lang="scss" scoped>
- </style>
|