杨若瑜发布至gitcode
49251825创建于 2022年9月1日历史提交
<template>
  <div id="app">
    <router-view />
  </div>
</template>

<script>
	export default {
		data(){
			return {}
		}
	}
</script>

<style lang="less">
	#app{
		width: 100%;
		height: 100%;
		padding: 0px;
		margin: 0px;
		display: flex;
		flex-direction: column;
		box-sizing: border-box;
	}
</style>