Index.vue 336 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div class="country">
  3. <router-view />
  4. </div>
  5. </template>
  6. <script>
  7. // @ is an alias to /src
  8. export default {
  9. name: "main",
  10. data() {
  11. return {};
  12. },
  13. mounted() {
  14. },
  15. computed: {
  16. },
  17. methods: {
  18. },
  19. components: { },
  20. };
  21. </script>
  22. <style>
  23. .country {
  24. padding: 10px 15px;
  25. height: 100vh;
  26. }
  27. </style>