App.vue 400 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <div id="app">
  3. <router-view/>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: "app",
  9. data() {
  10. return {};
  11. },
  12. methods: {
  13. }
  14. };
  15. </script>
  16. <style rel="stylesheet/scss" lang="scss">
  17. #app {
  18. position: absolute;
  19. right: 0;
  20. left: 0;
  21. bottom: 0;
  22. top: 0;
  23. background: #efefef;
  24. overflow: auto;
  25. z-index: 900;
  26. display: flex;
  27. flex-direction: row;
  28. }
  29. </style>