App.vue 383 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <div id="app">
  3. <div class="view-container">
  4. <router-view />
  5. </div>
  6. </div>
  7. </template>
  8. <script>
  9. export default {
  10. name: 'app',
  11. data() {
  12. return {
  13. };
  14. },
  15. created(){
  16. },
  17. methods:{
  18. },
  19. mounted () {
  20. },
  21. }
  22. </script>
  23. <style>
  24. .view-container{
  25. display: flex;
  26. justify-content: center;
  27. align-items: center;
  28. }
  29. </style>