App.vue 346 字节
Newer Older
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
<template>
	<div id="app">
		<router-view />
	</div>
</template>

<style>
	body {
		-webkit-font-smoothing: antialiased;
		padding: 0;
		margin: 0;
		font-family: 'PingFang SC';
		height: 100%;
		position: relative;

	}
	#app {
		height: 100%;		
		padding: 0;
		margin: 0;
	}
	.el-message-box__wrapper{
		z-index: 99999999!important;
	}
</style>