index.vue
801 Bytes
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
<template>
<div class="app_container">
<!-- head -->
<!-- <app-head :title="title"></app-head> -->
<!-- 路由 -->
<app-router></app-router>
</div>
</template>
<script>
import appRouter from './appRouter'
// import appHead from "@/layout/appHead"
export default {
components: {
appRouter,
// appHead,
},
data() {
return {
// title: "414234235423523"
}
},
method: {},
}
</script>
<style scoped>
.app_container {
width: 100%;
height: 100%;
background: #03050c;
background: url('../assets/img/bincheng-bgc33.png') no-repeat;
background-size: 100% 100%;
overflow: hidden;
}
/* 边框移动光标宽度 */
::v-deep .dv-border-box-8 use:last-child {
stroke-width: 2;
}
@font-face {
font-family: electronicFont;
src: url('~@/assets/common/DS-DIGIT.TTF');
}
</style>