App.vue 341 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <router-view />
  3. </template>
  4. <script>
  5. export default {
  6. replace: false,
  7. methods: {
  8. },
  9. mounted() {
  10. }
  11. };
  12. </script>
  13. <style lang="scss">
  14. body {
  15. padding: 50px;
  16. margin: 0;
  17. font-family: Roboto, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  18. background-color: lightgray;
  19. }
  20. </style>
  21. <style lang="scss" scoped>
  22. </style>