邃芒官网、邃芒慧影、口播(H5) https://m.metavatar.cc
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

38 lines
503 B

  1. <template>
  2. <div id="app">
  3. <!-- <keep-alive> -->
  4. <router-view></router-view>
  5. <!-- </keep-alive> -->
  6. <tail />
  7. </div>
  8. </template>
  9. <script>
  10. import top from './components/common/top'
  11. import tail from './components/common/tail'
  12. export default {
  13. components: {
  14. top,
  15. tail
  16. },
  17. data() {
  18. return {}
  19. }
  20. }
  21. </script>
  22. <style lang="scss">
  23. body,
  24. p {
  25. margin: 0 0;
  26. padding: 0 0;
  27. }
  28. input {
  29. background: none;
  30. outline: none;
  31. border: none;
  32. padding: 0;
  33. margin: 0;
  34. }
  35. </style>