index.vue 801 Bytes
<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>