App.vue 546 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <div id="app">
  3. <Home />
  4. </div>
  5. </template>
  6. <script>
  7. import Home from './page/index'
  8. export default {
  9. name: 'App',
  10. components: {
  11. Home,
  12. },
  13. }
  14. </script>
  15. <style>
  16. html,
  17. body {
  18. margin: 0;
  19. padding: 0;
  20. user-select: none;
  21. }
  22. #app {
  23. font-family: Avenir, Helvetica, Arial, sans-serif;
  24. -webkit-font-smoothing: antialiased;
  25. -moz-osx-font-smoothing: grayscale;
  26. text-align: center;
  27. color: #2c3e50;
  28. user-select: none;
  29. }
  30. /*去除下标*/
  31. .amap-logo{
  32. display: none!important;
  33. }
  34. .amap-copyright{
  35. opacity:0;
  36. }
  37. </style>