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
| <!--
| * @Author: shuishen 1109946754@qq.com
| * @Date: 2022-08-18 15:58:10
| * @LastEditors: shuishen 1109946754@qq.com
| * @LastEditTime: 2023-03-06 14:42:43
| * @FilePath: \srs-police-affairs\src\App.vue
| * @Description: app.vue
| *
| * Copyright (c) 2022 by shuishen 1109946754@qq.com, All Rights Reserved.
| -->
| <template>
| <div id="app">
| <router-view></router-view>
| </div>
| </template>
|
| <script>
| export default {
| data () {
| return {
|
| }
| },
|
|
| created () {
|
| },
|
| methods: {
|
| }
| }
| </script>
|
| <style lang="scss">
| #app {
| width: 100%;
| height: 100%;
| font-family: Avenir, Helvetica, Arial, sans-serif;
| -webkit-font-smoothing: antialiased;
| -moz-osx-font-smoothing: grayscale;
| text-align: center;
| color: #2c3e50;
| overflow: hidden;
| }
| </style>
|
|