智莺站长PC端官网代码, vite-vue
 
 
 

26 lines
263 B

  1. <template>
  2. <router-view />
  3. </template>
  4. <script>
  5. export default {
  6. name: 'App',
  7. }
  8. </script>
  9. <style type="text/css">
  10. html,body{
  11. width: 100%;
  12. height: 100%;
  13. position: absolute;
  14. left: 0;top: 0;
  15. overflow-x: hidden;
  16. overflow-y: auto;
  17. }
  18. </style>