App.vue 528 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <div id="app">
  3. <!-- 路由占位符 -->
  4. <router-view></router-view>
  5. </div>
  6. </template>
  7. <script>
  8. export default {
  9. name: 'app'
  10. }
  11. </script>
  12. <style>
  13. #app {
  14. font-family: 'Avenir', Helvetica, Arial, sans-serif;
  15. -webkit-font-smoothing: antialiased;
  16. -moz-osx-font-smoothing: grayscale;
  17. text-align: center;
  18. color: #2c3e50;
  19. margin-top: 60px;
  20. }
  21. /* 搜索表单 */
  22. .search-bx1{ padding-top: 10px; clear: both;text-align: left;}
  23. .g-mr20{ margin-right:20px; }
  24. .g-mb20{ margin-bottom:20px; }
  25. </style>