| 12345678910111213141516171819202122232425262728 |
- <template>
- <div id="app">
- <!-- 路由占位符 -->
- <router-view></router-view>
- </div>
- </template>
- <script>
- export default {
- name: 'app'
- }
- </script>
- <style>
- #app {
- font-family: 'Avenir', Helvetica, Arial, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- text-align: center;
- color: #2c3e50;
- margin-top: 60px;
- }
- /* 搜索表单 */
- .search-bx1{ padding-top: 10px; clear: both;text-align: left;}
- .g-mr20{ margin-right:20px; }
- .g-mb20{ margin-bottom:20px; }
- </style>
|