1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
| <template>
| <div id="app">
| <router-view />
| </div>
| </template>
| <script>
| import { rotate } from 'ol/transform';
| import router from './router';
| export default {
| name: "App",
| computed: {},
| components: {},
| data() {
| return {};
| },
| created() {
|
| },
| beforeDestroy() {},
| };
| </script>
| <style lang="less">
| // #app {
| // font-family: Avenir, Helvetica, Arial, sans-serif;
| // -webkit-font-smoothing: antialiased;
| // -moz-osx-font-smoothing: grayscale;
| // text-align: center;
| // color: #2c3e50;
| // }
| #app {
| /*三角箭头的颜色*/
| scrollbar-arrow-color: #fff;
| /*滚动条滑块按钮的颜色*/
| scrollbar-face-color: #dfebff;
| /*滚动条整体颜色*/
| scrollbar-track-color: #536c97;
| }
| // ::-webkit-scrollbar-thumb {
| // //滑块部分
| // background-color: #dfebff;
| // }
| // ::-webkit-scrollbar-track {
| // //轨道部分
| // box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
| // background: #536c97;
| // }
| </style>
|
|