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
| <template>
| <div id="app">
| <viewer ></viewer>
| </div>
| </template>
|
| <script>
| import viewer from "./components/map/viewer.vue";
| export default {
| name: 'app',
| components: {
| viewer
| }
| }
| </script>
|
| <style>
| /* 滚动条 */
| @import url("assets/css/scrool.css");
|
|
| #app {
| height: 100%;
| width: 100%;
| }
| button{
| cursor: pointer;
| }
|
| @font-face {
| font-family: MytitileName;
| src: url(./assets/font/方正综艺简体.ttf);
| }
|
| @font-face {
| font-family: MyTime;
| src: url(./assets/font/Orbitron-Regular.ttf);
| }
|
|
|
| </style>
|
|